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 16:09:16 UTC

git commit: Refacor throttling ui component according to the throttling stub modifications.

Updated Branches:
  refs/heads/master b70d47217 -> bf0af51aa


Refacor throttling ui component according to the throttling 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/bf0af51a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/bf0af51a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/bf0af51a

Branch: refs/heads/master
Commit: bf0af51aad215472c2424ac096d99a640af1eafc
Parents: b70d472
Author: Manula Thantriwatte <ma...@wso2.com>
Authored: Fri Jul 12 18:55:21 2013 +0530
Committer: Isuru <is...@wso2.com>
Committed: Fri Jul 12 19:37:41 2013 +0530

----------------------------------------------------------------------
 components/org.apache.stratos.throttling.ui/pom.xml | 16 ++++++++--------
 .../ui/clients/ThrottlingRuleEditorClient.java      |  2 +-
 2 files changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/bf0af51a/components/org.apache.stratos.throttling.ui/pom.xml
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.throttling.ui/pom.xml b/components/org.apache.stratos.throttling.ui/pom.xml
index 784042b..1b9e930 100644
--- a/components/org.apache.stratos.throttling.ui/pom.xml
+++ b/components/org.apache.stratos.throttling.ui/pom.xml
@@ -46,7 +46,7 @@
 		                    org.apache.stratos.throttling.ui.*,
 		                </Export-Package>
 		                <Import-Package>
-		                	org.wso2.carbon.throttling.stub.*; version="${carbon.platform.package.import.version.range}",
+		                    org.apache.stratos.throttling.stub.*; version="${carbon.platform.package.import.version.range}",
 		                    javax.servlet;version="${imp.pkg.version.javax.servlet}",
 		                    javax.servlet.http;version="${imp.pkg.version.javax.servlet}",
 		                    !javax.xml.namespace,
@@ -75,12 +75,12 @@
         <dependency>
             <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.registry.common.ui</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>
@@ -104,12 +104,12 @@
         <dependency>
             <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.ui</artifactId>
-            <version>${carbon.platform.version}</version>
+            <version>${wso2carbon.version}</version>
         </dependency>
         <dependency>
             <groupId>org.wso2.carbon</groupId>
             <artifactId>org.wso2.carbon.core</artifactId>
-            <version>${carbon.platform.version}</version>
+            <version>${wso2carbon.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.stratos</groupId>
@@ -117,9 +117,9 @@
 	    <version>${apache.stratos.version}</version>
         </dependency>
         <dependency>
-            <groupId>org.wso2.carbon</groupId>
-            <artifactId>org.wso2.carbon.throttling.stub</artifactId>
-            <version>${carbon.platform.version}</version>
+            <groupId>org.apache.stratos</groupId>
+            <artifactId>org.apache.stratos.throttling.stub</artifactId>
+            <version>${apache.stratos.version}</version>
         </dependency>
     </dependencies>
 

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/bf0af51a/components/org.apache.stratos.throttling.ui/src/main/java/org/apache/stratos/throttling/ui/clients/ThrottlingRuleEditorClient.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.throttling.ui/src/main/java/org/apache/stratos/throttling/ui/clients/ThrottlingRuleEditorClient.java b/components/org.apache.stratos.throttling.ui/src/main/java/org/apache/stratos/throttling/ui/clients/ThrottlingRuleEditorClient.java
index 5afc7cc..d3e75e1 100644
--- a/components/org.apache.stratos.throttling.ui/src/main/java/org/apache/stratos/throttling/ui/clients/ThrottlingRuleEditorClient.java
+++ b/components/org.apache.stratos.throttling.ui/src/main/java/org/apache/stratos/throttling/ui/clients/ThrottlingRuleEditorClient.java
@@ -26,7 +26,7 @@ import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.wso2.carbon.CarbonConstants;
 import org.wso2.carbon.registry.core.exceptions.RegistryException;
-import org.wso2.carbon.throttling.stub.services.ThrottlingRuleEditorServiceStub;
+import org.apache.stratos.throttling.stub.services.ThrottlingRuleEditorServiceStub;
 import org.wso2.carbon.ui.CarbonUIUtil;
 import org.wso2.carbon.utils.ServerConstants;