Skip to content

Commit

Permalink
Initial commit for renaming Execution Manager component to Template …
Browse files Browse the repository at this point in the history
…Manager
  • Loading branch information
thiliA committed Jun 28, 2016
1 parent f2afe72 commit c3401f8
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This project contains compontents which implements realtime event processing fun
#### carbon-event-processing repo contains following components.

* event-processor
* execution-manager
* template-manager
* event-simulator
* event-flow
* siddhi-tryit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<dependencies>
<dependency>
<groupId>org.wso2.carbon.analytics-common</groupId>
<artifactId>org.wso2.carbon.event.execution.manager.core</artifactId>
<artifactId>org.wso2.carbon.event.template.manager.core</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon</groupId>
Expand Down Expand Up @@ -92,7 +92,7 @@
!org.wso2.carbon.event.processor.template.deployer.internal.*,
</Export-Package>
<Import-Package>
org.wso2.carbon.event.execution.manager.core,
org.wso2.carbon.event.template.manager.core,
*;resolution:=optional,
</Import-Package>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.wso2.carbon.context.PrivilegedCarbonContext;
import org.wso2.carbon.event.execution.manager.core.DeployableTemplate;
import org.wso2.carbon.event.execution.manager.core.TemplateDeployer;
import org.wso2.carbon.event.execution.manager.core.TemplateDeploymentException;
import org.wso2.carbon.event.template.manager.core.DeployableTemplate;
import org.wso2.carbon.event.template.manager.core.TemplateDeployer;
import org.wso2.carbon.event.template.manager.core.TemplateDeploymentException;
import org.wso2.carbon.event.processor.core.internal.util.EventProcessorConstants;
import org.wso2.carbon.event.processor.template.deployer.internal.ExecutionPlanDeployerConstants;
import org.wso2.carbon.event.processor.template.deployer.internal.ExecutionPlanDeployerValueHolder;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.osgi.service.component.ComponentContext;
import org.wso2.carbon.event.execution.manager.core.TemplateDeployer;
import org.wso2.carbon.event.template.manager.core.TemplateDeployer;
import org.wso2.carbon.event.processor.template.deployer.ExecutionPlanTemplateDeployer;
import org.wso2.carbon.event.processor.template.deployer.internal.ExecutionPlanDeployerValueHolder;
import org.wso2.carbon.event.processor.core.EventProcessorService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<ManagementPermissions>
<ManagementPermission>
<DisplayName>Event processor template deploy</DisplayName>
<ResourceId>/permission/admin/manage/execution-manager</ResourceId>
<ResourceId>/permission/admin/manage/template-manager</ResourceId>
</ManagementPermission>
</ManagementPermissions>er

Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -241,22 +241,22 @@
</dependency>
<dependency>
<groupId>org.wso2.carbon.analytics-common</groupId>
<artifactId>org.wso2.carbon.event.execution.manager.core</artifactId>
<artifactId>org.wso2.carbon.event.template.manager.core</artifactId>
<version>${carbon.analytics.common.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.analytics-common</groupId>
<artifactId>org.wso2.carbon.event.execution.manager.ui</artifactId>
<artifactId>org.wso2.carbon.event.template.manager.ui</artifactId>
<version>${carbon.analytics.common.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.analytics-common</groupId>
<artifactId>org.wso2.carbon.event.execution.manager.admin</artifactId>
<artifactId>org.wso2.carbon.event.template.manager.admin</artifactId>
<version>${carbon.analytics.common.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.analytics-common</groupId>
<artifactId>org.wso2.carbon.event.execution.manager.stub</artifactId>
<artifactId>org.wso2.carbon.event.template.manager.stub</artifactId>
<version>${carbon.analytics.common.version}</version>
</dependency>
<!--analytics-common dependencies end-->
Expand Down Expand Up @@ -584,13 +584,13 @@
</dependency>
<dependency>
<groupId>org.wso2.carbon.analytics-common</groupId>
<artifactId>org.wso2.carbon.event.execution.manager.server.feature</artifactId>
<artifactId>org.wso2.carbon.event.template.manager.server.feature</artifactId>
<version>${carbon.analytics.common.version}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.wso2.carbon.analytics-common</groupId>
<artifactId>org.wso2.carbon.event.execution.manager.ui.feature</artifactId>
<artifactId>org.wso2.carbon.event.template.manager.ui.feature</artifactId>
<version>${carbon.analytics.common.version}</version>
<type>zip</type>
</dependency>
Expand Down Expand Up @@ -747,7 +747,7 @@
<module>components/event-flow</module>
<module>components/event-processor</module>
<module>components/event-simulator</module>
<module>components/execution-manager</module>
<module>components/template-manager</module>
</modules>
</profile>
</profiles>
Expand Down

0 comments on commit c3401f8

Please sign in to comment.