You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by is...@apache.org on 2013/07/12 15:36:40 UTC

git commit: Refactor throttling agent module according to throttling agent stub modifications.

Updated Branches:
  refs/heads/master 4d720aa3e -> 861084231


Refactor throttling agent module according to throttling agent stub modifications.

Signed-off-by: Isuru <is...@wso2.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/86108423
Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/86108423
Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/86108423

Branch: refs/heads/master
Commit: 8610842310f244f7745c643944bce17a94d479b4
Parents: 4d720aa
Author: Manula Thantriwatte <ma...@wso2.com>
Authored: Fri Jul 12 18:29:29 2013 +0530
Committer: Isuru <is...@wso2.com>
Committed: Fri Jul 12 19:05:53 2013 +0530

----------------------------------------------------------------------
 .../org.apache.stratos.throttling.agent/pom.xml | 20 ++++++++++----------
 .../MultitenancyThrottlingServiceClient.java    |  2 +-
 2 files changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/86108423/components/org.apache.stratos.throttling.agent/pom.xml
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.throttling.agent/pom.xml b/components/org.apache.stratos.throttling.agent/pom.xml
index 5a92a50..72b5d01 100644
--- a/components/org.apache.stratos.throttling.agent/pom.xml
+++ b/components/org.apache.stratos.throttling.agent/pom.xml
@@ -59,7 +59,7 @@
                             org.apache.stratos.throttling.agent.*,
                         </Private-Package>
                         <Import-Package>
-                            org.wso2.carbon.throttling.agent.stub.*;
+                            org.apache.stratos.throttling.agent.stub.*;
                             version="${carbon.platform.package.import.version.range}",
                             org.apache.stratos.common.*,
                             org.wso2.carbon.server.*,
@@ -92,12 +92,12 @@
         <dependency>
             <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.utils</artifactId>
-            <version>${carbon.platform.version}</version>
+            <version>${wso2carbon.version}</version>
         </dependency>
         <dependency>
             <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.registry.core</artifactId>
-            <version>${carbon.platform.version}</version>
+            <version>${wso2carbon.version}</version>
         </dependency>
         <dependency>
             <groupId>commons-logging</groupId>
@@ -106,12 +106,12 @@
         <dependency>
             <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.registry.extensions</artifactId>
-            <version>${carbon.platform.version}</version>
+            <version>${wso2carbon.version}</version>
         </dependency>
         <dependency>
             <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.registry.resource</artifactId>
-            <version>${carbon.platform.version}</version>
+            <version>${wso2carbon.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.stratos</groupId>
@@ -119,19 +119,19 @@
 	    <version>${apache.stratos.version}</version>
         </dependency>
         <dependency>
-            <groupId>org.wso2.carbon</groupId>
-	    <artifactId>org.wso2.carbon.throttling.agent.stub</artifactId>
-            <version>${carbon.platform.version}</version>
+            <groupId>org.apache.stratos</groupId>
+	    <artifactId>org.apache.stratos.throttling.agent.stub</artifactId>
+            <version>${apache.stratos.version}</version>
         </dependency>
         <dependency>
             <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.server</artifactId>
-            <version>${carbon.platform.version}</version>
+            <version>${wso2carbon.version}</version>
         </dependency>
         <dependency>
             <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.tomcat.ext</artifactId>
-            <version>${carbon.platform.version}</version>
+            <version>${wso2carbon.version}</version>
         </dependency>
     </dependencies>
 

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/86108423/components/org.apache.stratos.throttling.agent/src/main/java/org/apache/stratos/throttling/agent/client/MultitenancyThrottlingServiceClient.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.throttling.agent/src/main/java/org/apache/stratos/throttling/agent/client/MultitenancyThrottlingServiceClient.java b/components/org.apache.stratos.throttling.agent/src/main/java/org/apache/stratos/throttling/agent/client/MultitenancyThrottlingServiceClient.java
index 40a901e..d554fbe 100644
--- a/components/org.apache.stratos.throttling.agent/src/main/java/org/apache/stratos/throttling/agent/client/MultitenancyThrottlingServiceClient.java
+++ b/components/org.apache.stratos.throttling.agent/src/main/java/org/apache/stratos/throttling/agent/client/MultitenancyThrottlingServiceClient.java
@@ -22,7 +22,7 @@ import org.apache.axis2.client.Options;
 import org.apache.axis2.client.ServiceClient;
 import org.wso2.carbon.authenticator.proxy.AuthenticationAdminClient;
 import org.apache.stratos.throttling.agent.internal.ThrottlingAgentServiceComponent;
-import org.wso2.carbon.throttling.agent.stub.services.MultitenancyThrottlingServiceStub;
+import org.apache.stratos.throttling.agent.stub.services.MultitenancyThrottlingServiceStub;
 
 public class MultitenancyThrottlingServiceClient implements ThrottlingRuleInvoker {
     MultitenancyThrottlingServiceStub stub;