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/05 11:15:09 UTC

[4/5] git commit: refactoring adc.mgt.stub

refactoring adc.mgt.stub


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

Branch: refs/heads/master
Commit: 3cb619b504cca8d2d181ce0f34f34bdc83fbbed7
Parents: abe070e
Author: Isuru <is...@wso2.com>
Authored: Fri Jul 5 14:42:55 2013 +0530
Committer: Isuru <is...@wso2.com>
Committed: Fri Jul 5 14:42:55 2013 +0530

----------------------------------------------------------------------
 .../4.1.1/pom.xml                               |  118 ++
 .../resources/ApplicationManagementService.wsdl |  807 ++++++++++++
 .../4.1.3/pom.xml                               |  143 +++
 .../resources/ApplicationManagementService.wsdl | 1192 ++++++++++++++++++
 .../org.wso2.carbon.adc.mgt.stub/4.1.1/pom.xml  |  118 --
 .../resources/ApplicationManagementService.wsdl |  807 ------------
 .../org.wso2.carbon.adc.mgt.stub/4.1.3/pom.xml  |  118 --
 .../resources/ApplicationManagementService.wsdl | 1192 ------------------
 service-stubs/pom.xml                           |   18 +-
 9 files changed, 2272 insertions(+), 2241 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/3cb619b5/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.1/pom.xml
----------------------------------------------------------------------
diff --git a/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.1/pom.xml b/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.1/pom.xml
new file mode 100644
index 0000000..83c9ead
--- /dev/null
+++ b/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.1/pom.xml
@@ -0,0 +1,118 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (c) 2005-2011, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
+ ~
+ ~ WSO2 Inc. licenses this file to you under the Apache License,
+ ~ Version 2.0 (the "License"); you may not use this file except
+ ~ in compliance with the License.
+ ~ You may obtain a copy of the License at
+ ~
+ ~    http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied.  See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <parent>
+        <groupId>org.wso2.carbon</groupId>
+        <artifactId>carbon-service-stubs</artifactId>
+        <version>4.1.0</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>org.wso2.carbon.adc.mgt.stub</artifactId>
+    <version>4.1.1</version>
+    <packaging>bundle</packaging>
+    <name>WSO2 Carbon - Cartridge app Management Stub</name>
+    <url>http://wso2.org</url>
+
+    <build>
+        <plugins>       
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.1</version>
+                <executions>
+                    <execution>
+                        <id>source-code-generation</id>
+                        <phase>process-resources</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <tasks>
+                                <path id="wsdl2java.classpath">
+				    <pathelement location="${settings.localRepository}/org/apache/ws/commons/axiom/wso2/axiom/${orbit.version.axiom}/axiom-${orbit.version.axiom}.jar"/>
+                                    <pathelement location="${settings.localRepository}/org/apache/axis2/wso2/axis2-client/${orbit.version.axis2}/axis2-client-${orbit.version.axis2}.jar"/>
+                                    <pathelement location="${settings.localRepository}/org/apache/axis2/wso2/axis2/${orbit.version.axis2}/axis2-${orbit.version.axis2}.jar"/>
+                                </path>
+                                <java classname="org.apache.axis2.wsdl.WSDL2Java" fork="true">
+                                    <arg line="-uri src/main/resources/ApplicationManagementService.wsdl -u -uw -o target/generated-code -p org.wso2.carbon.adc.mgt.stub"/>
+                                    <classpath refid="wsdl2java.classpath"/>
+                                </java>
+                            </tasks>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>add-source</id>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>add-source</goal>
+                        </goals>
+                        <configuration>
+                            <sources>
+                                <source>
+                                    target/generated-code/src
+                                </source>
+                            </sources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+	    <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                        <Bundle-Name>${project.artifactId}</Bundle-Name>
+                        <Private-Package>
+                        </Private-Package>
+                        <Export-Package>
+                            org.wso2.carbon.adc.mgt.stub.*; version="1.0.0",
+                            org.wso2.carbon.adc.mgt.service.*; version="1.0.0",
+                            org.wso2.carbon.adc.mgt.dto.xsd*; version="1.0.0",
+                            org.wso2.carbon.adc.mgt.exception.xsd.*; version="1.0.0
+                        </Export-Package>
+                        <Import-Package>
+                            !org.wso2.carbon.adc.mgt.stub.*
+                        </Import-Package>
+                        <DynamicImport-Package>*</DynamicImport-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.axis2.wso2</groupId>
+            <artifactId>axis2</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/3cb619b5/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.1/src/main/resources/ApplicationManagementService.wsdl
----------------------------------------------------------------------
diff --git a/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.1/src/main/resources/ApplicationManagementService.wsdl b/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.1/src/main/resources/ApplicationManagementService.wsdl
new file mode 100644
index 0000000..e0ebd83
--- /dev/null
+++ b/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.1/src/main/resources/ApplicationManagementService.wsdl
@@ -0,0 +1,807 @@
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ax29="http://dto.mgt.adc.carbon.wso2.org/xsd" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:ns="http://service.mgt.adc.carbon.wso2.org" xmlns:ax27="http://exception.mgt.adc.carbon.wso2.org/xsd" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://service.mgt.adc.carbon.wso2.org">
+    <wsdl:documentation>ApplicationManagementService</wsdl:documentation>
+    <wsdl:types>
+        <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://dto.mgt.adc.carbon.wso2.org/xsd">
+            <xs:complexType name="Cartridge">
+                <xs:sequence>
+                    <xs:element maxOccurs="unbounded" minOccurs="0" name="accessURLs" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="activeInstances" type="xs:int"/>
+                    <xs:element minOccurs="0" name="cartridgeAlias" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="cartridgeType" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="dbUserName" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="description" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="displayName" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="hostName" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="ip" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="mappedDomain" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="maxInstanceCount" type="xs:int"/>
+                    <xs:element minOccurs="0" name="minInstanceCount" type="xs:int"/>
+                    <xs:element minOccurs="0" name="multiTenant" type="xs:boolean"/>
+                    <xs:element minOccurs="0" name="password" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="provider" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="repoURL" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="status" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="version" nillable="true" type="xs:string"/>
+                </xs:sequence>
+            </xs:complexType>
+            <xs:complexType name="CartridgeWrapper">
+                <xs:sequence>
+                    <xs:element maxOccurs="unbounded" minOccurs="0" name="cartridges" nillable="true" type="ax29:Cartridge"/>
+                    <xs:element minOccurs="0" name="numberOfPages" type="xs:int"/>
+                </xs:sequence>
+            </xs:complexType>
+        </xs:schema>
+        <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://exception.mgt.adc.carbon.wso2.org/xsd">
+            <xs:complexType name="ADCException">
+                <xs:sequence>
+                    <xs:element minOccurs="0" name="message" nillable="true" type="xs:string"/>
+                </xs:sequence>
+            </xs:complexType>
+            <xs:complexType name="ADCRegistryResourceException">
+                <xs:sequence>
+                    <xs:element minOccurs="0" name="message" nillable="true" type="xs:string"/>
+                </xs:sequence>
+            </xs:complexType>
+        </xs:schema>
+        <xs:schema xmlns:ax28="http://exception.mgt.adc.carbon.wso2.org/xsd" xmlns:ax210="http://dto.mgt.adc.carbon.wso2.org/xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://service.mgt.adc.carbon.wso2.org">
+            <xs:import namespace="http://exception.mgt.adc.carbon.wso2.org/xsd"/>
+            <xs:import namespace="http://dto.mgt.adc.carbon.wso2.org/xsd"/>
+            <xs:element name="ApplicationManagementServiceADCException">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="ADCException" nillable="true" type="ax27:ADCException"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="unsubscribe">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="alias" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="unsubscribeResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="subscribe">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="minInstances" type="xs:int"/>
+                        <xs:element minOccurs="0" name="maxInstances" type="xs:int"/>
+                        <xs:element minOccurs="0" name="shouldActivate" type="xs:boolean"/>
+                        <xs:element minOccurs="0" name="alias" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="cartridgeType" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="repoURL" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="repoUserName" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="repoPassword" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="dataCartridgeType" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="dataCartridgeAlias" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="subscribeResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="removeDomainMapping">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="cartridgeAlias" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="listAvailableCartridges">
+                <xs:complexType>
+                    <xs:sequence/>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="listAvailableCartridgesResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="ax29:Cartridge"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="listApplications">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="cartridgeType" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="listApplicationsResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getSubscribedCartridgeAliases">
+                <xs:complexType>
+                    <xs:sequence/>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getSubscribedCartridgeAliasesResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getPagedSubscribedCartridges">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="cartridgeSearchString" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="cartridgeProvider" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="pageNumber" type="xs:int"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getPagedSubscribedCartridgesResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="ax29:CartridgeWrapper"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getPagedAvailableCartridges">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="cartridgeSearchString" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="cartridgeProvider" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="pageNumber" type="xs:int"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getPagedAvailableCartridgesResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="ax29:CartridgeWrapper"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getCartridgeInfo">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="alias" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getCartridgeInfoResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="ax29:Cartridge"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getCartridgeClusterMaxLimit">
+                <xs:complexType>
+                    <xs:sequence/>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getCartridgeClusterMaxLimitResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" type="xs:int"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="authenticateValidation">
+                <xs:complexType>
+                    <xs:sequence/>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="authenticateValidationResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" type="xs:boolean"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="ApplicationManagementServiceADCRegistryResourceException">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="ADCRegistryResourceException" nillable="true" type="ax27:ADCRegistryResourceException"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="addDomainMapping">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="mappedDomain" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="cartridgeAlias" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="addDomainMappingResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="activate">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="minInstances" type="xs:int"/>
+                        <xs:element minOccurs="0" name="maxInstance" type="xs:int"/>
+                        <xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="activateResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" type="xs:boolean"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:schema>
+    </wsdl:types>
+    <wsdl:message name="unsubscribeRequest">
+        <wsdl:part name="parameters" element="ns:unsubscribe"/>
+    </wsdl:message>
+    <wsdl:message name="unsubscribeResponse">
+        <wsdl:part name="parameters" element="ns:unsubscribeResponse"/>
+    </wsdl:message>
+    <wsdl:message name="ApplicationManagementServiceADCException">
+        <wsdl:part name="parameters" element="ns:ApplicationManagementServiceADCException"/>
+    </wsdl:message>
+    <wsdl:message name="listApplicationsRequest">
+        <wsdl:part name="parameters" element="ns:listApplications"/>
+    </wsdl:message>
+    <wsdl:message name="listApplicationsResponse">
+        <wsdl:part name="parameters" element="ns:listApplicationsResponse"/>
+    </wsdl:message>
+    <wsdl:message name="getCartridgeInfoRequest">
+        <wsdl:part name="parameters" element="ns:getCartridgeInfo"/>
+    </wsdl:message>
+    <wsdl:message name="getCartridgeInfoResponse">
+        <wsdl:part name="parameters" element="ns:getCartridgeInfoResponse"/>
+    </wsdl:message>
+    <wsdl:message name="activateRequest">
+        <wsdl:part name="parameters" element="ns:activate"/>
+    </wsdl:message>
+    <wsdl:message name="activateResponse">
+        <wsdl:part name="parameters" element="ns:activateResponse"/>
+    </wsdl:message>
+    <wsdl:message name="addDomainMappingRequest">
+        <wsdl:part name="parameters" element="ns:addDomainMapping"/>
+    </wsdl:message>
+    <wsdl:message name="addDomainMappingResponse">
+        <wsdl:part name="parameters" element="ns:addDomainMappingResponse"/>
+    </wsdl:message>
+    <wsdl:message name="ApplicationManagementServiceADCRegistryResourceException">
+        <wsdl:part name="parameters" element="ns:ApplicationManagementServiceADCRegistryResourceException"/>
+    </wsdl:message>
+    <wsdl:message name="removeDomainMappingRequest">
+        <wsdl:part name="parameters" element="ns:removeDomainMapping"/>
+    </wsdl:message>
+    <wsdl:message name="authenticateValidationRequest">
+        <wsdl:part name="parameters" element="ns:authenticateValidation"/>
+    </wsdl:message>
+    <wsdl:message name="authenticateValidationResponse">
+        <wsdl:part name="parameters" element="ns:authenticateValidationResponse"/>
+    </wsdl:message>
+    <wsdl:message name="subscribeRequest">
+        <wsdl:part name="parameters" element="ns:subscribe"/>
+    </wsdl:message>
+    <wsdl:message name="subscribeResponse">
+        <wsdl:part name="parameters" element="ns:subscribeResponse"/>
+    </wsdl:message>
+    <wsdl:message name="listAvailableCartridgesRequest">
+        <wsdl:part name="parameters" element="ns:listAvailableCartridges"/>
+    </wsdl:message>
+    <wsdl:message name="listAvailableCartridgesResponse">
+        <wsdl:part name="parameters" element="ns:listAvailableCartridgesResponse"/>
+    </wsdl:message>
+    <wsdl:message name="getPagedAvailableCartridgesRequest">
+        <wsdl:part name="parameters" element="ns:getPagedAvailableCartridges"/>
+    </wsdl:message>
+    <wsdl:message name="getPagedAvailableCartridgesResponse">
+        <wsdl:part name="parameters" element="ns:getPagedAvailableCartridgesResponse"/>
+    </wsdl:message>
+    <wsdl:message name="getCartridgeClusterMaxLimitRequest">
+        <wsdl:part name="parameters" element="ns:getCartridgeClusterMaxLimit"/>
+    </wsdl:message>
+    <wsdl:message name="getCartridgeClusterMaxLimitResponse">
+        <wsdl:part name="parameters" element="ns:getCartridgeClusterMaxLimitResponse"/>
+    </wsdl:message>
+    <wsdl:message name="getPagedSubscribedCartridgesRequest">
+        <wsdl:part name="parameters" element="ns:getPagedSubscribedCartridges"/>
+    </wsdl:message>
+    <wsdl:message name="getPagedSubscribedCartridgesResponse">
+        <wsdl:part name="parameters" element="ns:getPagedSubscribedCartridgesResponse"/>
+    </wsdl:message>
+    <wsdl:message name="getSubscribedCartridgeAliasesRequest">
+        <wsdl:part name="parameters" element="ns:getSubscribedCartridgeAliases"/>
+    </wsdl:message>
+    <wsdl:message name="getSubscribedCartridgeAliasesResponse">
+        <wsdl:part name="parameters" element="ns:getSubscribedCartridgeAliasesResponse"/>
+    </wsdl:message>
+    <wsdl:portType name="ApplicationManagementServicePortType">
+        <wsdl:operation name="unsubscribe">
+            <wsdl:input message="ns:unsubscribeRequest" wsaw:Action="urn:unsubscribe"/>
+            <wsdl:output message="ns:unsubscribeResponse" wsaw:Action="urn:unsubscribeResponse"/>
+            <wsdl:fault message="ns:ApplicationManagementServiceADCException" name="ApplicationManagementServiceADCException" wsaw:Action="urn:unsubscribeApplicationManagementServiceADCException"/>
+        </wsdl:operation>
+        <wsdl:operation name="listApplications">
+            <wsdl:input message="ns:listApplicationsRequest" wsaw:Action="urn:listApplications"/>
+            <wsdl:output message="ns:listApplicationsResponse" wsaw:Action="urn:listApplicationsResponse"/>
+        </wsdl:operation>
+        <wsdl:operation name="getCartridgeInfo">
+            <wsdl:input message="ns:getCartridgeInfoRequest" wsaw:Action="urn:getCartridgeInfo"/>
+            <wsdl:output message="ns:getCartridgeInfoResponse" wsaw:Action="urn:getCartridgeInfoResponse"/>
+            <wsdl:fault message="ns:ApplicationManagementServiceADCException" name="ApplicationManagementServiceADCException" wsaw:Action="urn:getCartridgeInfoApplicationManagementServiceADCException"/>
+        </wsdl:operation>
+        <wsdl:operation name="activate">
+            <wsdl:input message="ns:activateRequest" wsaw:Action="urn:activate"/>
+            <wsdl:output message="ns:activateResponse" wsaw:Action="urn:activateResponse"/>
+        </wsdl:operation>
+        <wsdl:operation name="addDomainMapping">
+            <wsdl:input message="ns:addDomainMappingRequest" wsaw:Action="urn:addDomainMapping"/>
+            <wsdl:output message="ns:addDomainMappingResponse" wsaw:Action="urn:addDomainMappingResponse"/>
+            <wsdl:fault message="ns:ApplicationManagementServiceADCException" name="ApplicationManagementServiceADCException" wsaw:Action="urn:addDomainMappingApplicationManagementServiceADCException"/>
+            <wsdl:fault message="ns:ApplicationManagementServiceADCRegistryResourceException" name="ApplicationManagementServiceADCRegistryResourceException" wsaw:Action="urn:addDomainMappingApplicationManagementServiceADCRegistryResourceException"/>
+        </wsdl:operation>
+        <wsdl:operation name="removeDomainMapping">
+            <wsdl:input message="ns:removeDomainMappingRequest" wsaw:Action="urn:removeDomainMapping"/>
+            <wsdl:fault message="ns:ApplicationManagementServiceADCException" name="ApplicationManagementServiceADCException" wsaw:Action="urn:removeDomainMappingApplicationManagementServiceADCException"/>
+        </wsdl:operation>
+        <wsdl:operation name="authenticateValidation">
+            <wsdl:input message="ns:authenticateValidationRequest" wsaw:Action="urn:authenticateValidation"/>
+            <wsdl:output message="ns:authenticateValidationResponse" wsaw:Action="urn:authenticateValidationResponse"/>
+        </wsdl:operation>
+        <wsdl:operation name="subscribe">
+            <wsdl:input message="ns:subscribeRequest" wsaw:Action="urn:subscribe"/>
+            <wsdl:output message="ns:subscribeResponse" wsaw:Action="urn:subscribeResponse"/>
+            <wsdl:fault message="ns:ApplicationManagementServiceADCException" name="ApplicationManagementServiceADCException" wsaw:Action="urn:subscribeApplicationManagementServiceADCException"/>
+        </wsdl:operation>
+        <wsdl:operation name="listAvailableCartridges">
+            <wsdl:input message="ns:listAvailableCartridgesRequest" wsaw:Action="urn:listAvailableCartridges"/>
+            <wsdl:output message="ns:listAvailableCartridgesResponse" wsaw:Action="urn:listAvailableCartridgesResponse"/>
+            <wsdl:fault message="ns:ApplicationManagementServiceADCException" name="ApplicationManagementServiceADCException" wsaw:Action="urn:listAvailableCartridgesApplicationManagementServiceADCException"/>
+        </wsdl:operation>
+        <wsdl:operation name="getPagedAvailableCartridges">
+            <wsdl:input message="ns:getPagedAvailableCartridgesRequest" wsaw:Action="urn:getPagedAvailableCartridges"/>
+            <wsdl:output message="ns:getPagedAvailableCartridgesResponse" wsaw:Action="urn:getPagedAvailableCartridgesResponse"/>
+            <wsdl:fault message="ns:ApplicationManagementServiceADCException" name="ApplicationManagementServiceADCException" wsaw:Action="urn:getPagedAvailableCartridgesApplicationManagementServiceADCException"/>
+        </wsdl:operation>
+        <wsdl:operation name="getCartridgeClusterMaxLimit">
+            <wsdl:input message="ns:getCartridgeClusterMaxLimitRequest" wsaw:Action="urn:getCartridgeClusterMaxLimit"/>
+            <wsdl:output message="ns:getCartridgeClusterMaxLimitResponse" wsaw:Action="urn:getCartridgeClusterMaxLimitResponse"/>
+        </wsdl:operation>
+        <wsdl:operation name="getPagedSubscribedCartridges">
+            <wsdl:input message="ns:getPagedSubscribedCartridgesRequest" wsaw:Action="urn:getPagedSubscribedCartridges"/>
+            <wsdl:output message="ns:getPagedSubscribedCartridgesResponse" wsaw:Action="urn:getPagedSubscribedCartridgesResponse"/>
+            <wsdl:fault message="ns:ApplicationManagementServiceADCException" name="ApplicationManagementServiceADCException" wsaw:Action="urn:getPagedSubscribedCartridgesApplicationManagementServiceADCException"/>
+        </wsdl:operation>
+        <wsdl:operation name="getSubscribedCartridgeAliases">
+            <wsdl:input message="ns:getSubscribedCartridgeAliasesRequest" wsaw:Action="urn:getSubscribedCartridgeAliases"/>
+            <wsdl:output message="ns:getSubscribedCartridgeAliasesResponse" wsaw:Action="urn:getSubscribedCartridgeAliasesResponse"/>
+        </wsdl:operation>
+    </wsdl:portType>
+    <wsdl:binding name="ApplicationManagementServiceSoap11Binding" type="ns:ApplicationManagementServicePortType">
+        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+        <wsdl:operation name="unsubscribe">
+            <soap:operation soapAction="urn:unsubscribe" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="listApplications">
+            <soap:operation soapAction="urn:listApplications" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="activate">
+            <soap:operation soapAction="urn:activate" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="getCartridgeInfo">
+            <soap:operation soapAction="urn:getCartridgeInfo" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="addDomainMapping">
+            <soap:operation soapAction="urn:addDomainMapping" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+            <wsdl:fault name="ApplicationManagementServiceADCRegistryResourceException">
+                <soap:fault use="literal" name="ApplicationManagementServiceADCRegistryResourceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="removeDomainMapping">
+            <soap:operation soapAction="urn:removeDomainMapping" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="authenticateValidation">
+            <soap:operation soapAction="urn:authenticateValidation" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="subscribe">
+            <soap:operation soapAction="urn:subscribe" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="listAvailableCartridges">
+            <soap:operation soapAction="urn:listAvailableCartridges" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="getPagedAvailableCartridges">
+            <soap:operation soapAction="urn:getPagedAvailableCartridges" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="getCartridgeClusterMaxLimit">
+            <soap:operation soapAction="urn:getCartridgeClusterMaxLimit" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="getPagedSubscribedCartridges">
+            <soap:operation soapAction="urn:getPagedSubscribedCartridges" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="getSubscribedCartridgeAliases">
+            <soap:operation soapAction="urn:getSubscribedCartridgeAliases" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:binding name="ApplicationManagementServiceSoap12Binding" type="ns:ApplicationManagementServicePortType">
+        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+        <wsdl:operation name="unsubscribe">
+            <soap12:operation soapAction="urn:unsubscribe" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap12:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="listApplications">
+            <soap12:operation soapAction="urn:listApplications" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="activate">
+            <soap12:operation soapAction="urn:activate" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="getCartridgeInfo">
+            <soap12:operation soapAction="urn:getCartridgeInfo" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap12:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="addDomainMapping">
+            <soap12:operation soapAction="urn:addDomainMapping" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap12:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+            <wsdl:fault name="ApplicationManagementServiceADCRegistryResourceException">
+                <soap12:fault use="literal" name="ApplicationManagementServiceADCRegistryResourceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="removeDomainMapping">
+            <soap12:operation soapAction="urn:removeDomainMapping" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap12:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="authenticateValidation">
+            <soap12:operation soapAction="urn:authenticateValidation" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="subscribe">
+            <soap12:operation soapAction="urn:subscribe" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap12:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="listAvailableCartridges">
+            <soap12:operation soapAction="urn:listAvailableCartridges" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap12:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="getPagedAvailableCartridges">
+            <soap12:operation soapAction="urn:getPagedAvailableCartridges" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap12:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="getCartridgeClusterMaxLimit">
+            <soap12:operation soapAction="urn:getCartridgeClusterMaxLimit" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="getPagedSubscribedCartridges">
+            <soap12:operation soapAction="urn:getPagedSubscribedCartridges" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="ApplicationManagementServiceADCException">
+                <soap12:fault use="literal" name="ApplicationManagementServiceADCException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="getSubscribedCartridgeAliases">
+            <soap12:operation soapAction="urn:getSubscribedCartridgeAliases" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:binding name="ApplicationManagementServiceHttpBinding" type="ns:ApplicationManagementServicePortType">
+        <http:binding verb="POST"/>
+        <wsdl:operation name="unsubscribe">
+            <http:operation location="unsubscribe"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="listApplications">
+            <http:operation location="listApplications"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="activate">
+            <http:operation location="activate"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="getCartridgeInfo">
+            <http:operation location="getCartridgeInfo"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="addDomainMapping">
+            <http:operation location="addDomainMapping"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="removeDomainMapping">
+            <http:operation location="removeDomainMapping"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+        </wsdl:operation>
+        <wsdl:operation name="authenticateValidation">
+            <http:operation location="authenticateValidation"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="subscribe">
+            <http:operation location="subscribe"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="listAvailableCartridges">
+            <http:operation location="listAvailableCartridges"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="getPagedAvailableCartridges">
+            <http:operation location="getPagedAvailableCartridges"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="getCartridgeClusterMaxLimit">
+            <http:operation location="getCartridgeClusterMaxLimit"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="getPagedSubscribedCartridges">
+            <http:operation location="getPagedSubscribedCartridges"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+        <wsdl:operation name="getSubscribedCartridgeAliases">
+            <http:operation location="getSubscribedCartridgeAliases"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+            <wsdl:output>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:output>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:service name="ApplicationManagementService">
+        <wsdl:port name="ApplicationManagementServiceHttpsSoap11Endpoint" binding="ns:ApplicationManagementServiceSoap11Binding">
+            <soap:address location="https://10.100.3.10:9443/services/ApplicationManagementService.ApplicationManagementServiceHttpsSoap11Endpoint/"/>
+        </wsdl:port>
+        <wsdl:port name="ApplicationManagementServiceHttpsSoap12Endpoint" binding="ns:ApplicationManagementServiceSoap12Binding">
+            <soap12:address location="https://10.100.3.10:9443/services/ApplicationManagementService.ApplicationManagementServiceHttpsSoap12Endpoint/"/>
+        </wsdl:port>
+        <wsdl:port name="ApplicationManagementServiceHttpsEndpoint" binding="ns:ApplicationManagementServiceHttpBinding">
+            <http:address location="https://10.100.3.10:9443/services/ApplicationManagementService.ApplicationManagementServiceHttpsEndpoint/"/>
+        </wsdl:port>
+    </wsdl:service>
+</wsdl:definitions>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/3cb619b5/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.3/pom.xml
----------------------------------------------------------------------
diff --git a/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.3/pom.xml b/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.3/pom.xml
new file mode 100644
index 0000000..c8eba94
--- /dev/null
+++ b/service-stubs/org.apache.stratos.adc.mgt.stub/4.1.3/pom.xml
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+       Licensed to the Apache Software Foundation (ASF) under one
+       or more contributor license agreements.  See the NOTICE file
+       distributed with this work for additional information
+       regarding copyright ownership.  The ASF licenses this file
+       to you under the Apache License, Version 2.0 (the
+       "License"); you may not use this file except in compliance
+       with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+       Unless required by applicable law or agreed to in writing,
+       software distributed under the License is distributed on an
+       "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+       KIND, either express or implied.  See the License for the
+       specific language governing permissions and limitations
+       under the License. 
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <parent>
+        <groupId>org.apache.stratos</groupId>
+        <artifactId>stratos-service-stubs</artifactId>
+        <version>2.0.0</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>org.apache.stratos.adc.mgt.stub</artifactId>
+    <version>4.1.3</version>
+    <packaging>bundle</packaging>
+    <name>Apache Stratos - Cartridge app Management Stub</name>
+    <url>http://apache.org</url>
+
+    <build>
+        <plugins>       
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.1</version>
+                <executions>
+                    <execution>
+                        <id>source-code-generation</id>
+                        <phase>process-resources</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <tasks>
+                                <path id="wsdl2java.classpath">
+				    <pathelement location="${settings.localRepository}/org/apache/ws/commons/axiom/wso2/axiom/${axiom.wso2.version}/axiom-${axiom.wso2.version}.jar"/>
+                                    <pathelement location="${settings.localRepository}/org/apache/axis2/wso2/axis2-client/${axis2.wso2.client.version}/axis2-client-${axis2.wso2.client.version}.jar"/>
+                                    <pathelement location="${settings.localRepository}/org/apache/axis2/wso2/axis2/${axis2.wso2.version}/axis2-${axis2.wso2.version}.jar"/>
+                                </path>
+                                <java classname="org.apache.axis2.wsdl.WSDL2Java" fork="true">
+                                    <arg line="-uri src/main/resources/ApplicationManagementService.wsdl -u -uw -o target/generated-code -p org.apache.stratos.adc.mgt.stub"/>
+                                    <classpath refid="wsdl2java.classpath"/>
+                                </java>
+                            </tasks>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>add-source</id>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>add-source</goal>
+                        </goals>
+                        <configuration>
+                            <sources>
+                                <source>
+                                    target/generated-code/src
+                                </source>
+                            </sources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+	    <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                        <Bundle-Name>${project.artifactId}</Bundle-Name>
+                        <Private-Package>
+                        </Private-Package>
+                        <Export-Package>
+                            org.apache.stratos.adc.mgt.stub.*; version="1.0.0",
+                            org.apache.stratos.adc.mgt.service.*; version="1.0.0",
+                            org.apache.stratos.adc.mgt.dto.xsd*; version="1.0.0",
+                            org.apache.stratos.adc.mgt.exception.xsd.*; version="1.0.0
+                        </Export-Package>
+                        <Import-Package>
+                            !org.apache.stratos.adc.mgt.stub.*
+                        </Import-Package>
+                        <DynamicImport-Package>*</DynamicImport-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.axis2.wso2</groupId>
+            <artifactId>axis2</artifactId>
+        </dependency>
+	<dependency>
+            <groupId>org.apache.axis2.wso2</groupId>
+            <artifactId>axis2-client</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>wsdl4j.wso2</groupId>
+            <artifactId>wsdl4j</artifactId>
+        </dependency>
+        <!--dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+       </dependency>
+       <dependency>
+            <groupId>org.apache.ws.commons.schema.wso2</groupId>
+            <artifactId>XmlSchema</artifactId>
+       </dependency>
+       <dependency>
+            <groupId>org.apache.ws.commons.axiom.wso2</groupId>
+            <artifactId>axiom</artifactId>
+       </dependency>
+       <dependency>
+            <groupId>org.apache.neethi.wso2</groupId>
+            <artifactId>neethi</artifactId>
+       </dependency-->
+    </dependencies>
+
+</project>