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/24 13:34:17 UTC

git commit: Correction for missing files in adc repo notification and repo information

Updated Branches:
  refs/heads/master d089b1fd6 -> 042f306f9


Correction for missing files in adc repo notification and repo information

Signed-off-by: Isuru Perera <is...@apache.org>


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

Branch: refs/heads/master
Commit: 042f306f97499e9c7aef8d9dc9e89cb289884d5f
Parents: d089b1f
Author: Imesh Gunaratne <im...@wso2.com>
Authored: Wed Jul 24 16:57:51 2013 +0530
Committer: Isuru Perera <is...@apache.org>
Committed: Wed Jul 24 17:03:15 2013 +0530

----------------------------------------------------------------------
 .../pom.xml                                     | 121 ++++++++++++
 .../resources/RepositoryInformationService.wsdl | 193 +++++++++++++++++++
 .../pom.xml                                     | 128 ++++++++++++
 .../main/resources/RepoNotificationService.wsdl | 141 ++++++++++++++
 4 files changed, 583 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/042f306f/service-stubs/org.apache.stratos.adc.repoinformation.service.stub/pom.xml
----------------------------------------------------------------------
diff --git a/service-stubs/org.apache.stratos.adc.repoinformation.service.stub/pom.xml b/service-stubs/org.apache.stratos.adc.repoinformation.service.stub/pom.xml
new file mode 100644
index 0000000..cd37f48
--- /dev/null
+++ b/service-stubs/org.apache.stratos.adc.repoinformation.service.stub/pom.xml
@@ -0,0 +1,121 @@
+<?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-parent</artifactId>
+        <version>3.0.0-SNAPSHOT</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <version>4.1.1</version>
+    <artifactId>org.apache.stratos.adc.repositoryinformation.service.stub</artifactId>
+    <packaging>bundle</packaging>
+    <name>Apache Stratos - Repository Information Service 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>
+                                <java classname="org.apache.axis2.wsdl.WSDL2Java" fork="true">
+                                    <arg line="-uri src/main/resources/RepositoryInformationService.wsdl -u -uw -o target/generated-code -p org.apache.stratos.adc.repository.information"/>
+                                    <classpath refid="maven.dependency.classpath"/>
+                                    <classpath refid="maven.compile.classpath"/>
+                                    <classpath refid="maven.runtime.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>
+                        <Export-Package>
+                            org.apache.stratos.adc.repository.information.service.*; version=0.0.0,
+                            org.apache.stratos.adc.repository.information.*; version=0.0.0,
+                            org.apache.stratos.adc.mgt.dao.xsd.*; version=0.0.0,
+                            axis2.apache.org.xsd.*; version=0.0.0
+                        </Export-Package>
+                        <Import-Package>
+                            *;resolution:=optional
+                        </Import-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>
+    </dependencies>
+
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/042f306f/service-stubs/org.apache.stratos.adc.repoinformation.service.stub/src/main/resources/RepositoryInformationService.wsdl
----------------------------------------------------------------------
diff --git a/service-stubs/org.apache.stratos.adc.repoinformation.service.stub/src/main/resources/RepositoryInformationService.wsdl b/service-stubs/org.apache.stratos.adc.repoinformation.service.stub/src/main/resources/RepositoryInformationService.wsdl
new file mode 100644
index 0000000..ca5c206
--- /dev/null
+++ b/service-stubs/org.apache.stratos.adc.repoinformation.service.stub/src/main/resources/RepositoryInformationService.wsdl
@@ -0,0 +1,193 @@
+<?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.
+  -->
+
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ax29="http://dao.mgt.adc.carbon.wso2.org/xsd" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:tns="http://service.mgt.adc.carbon.wso2.org" 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>RepositoryInformationService</wsdl:documentation>
+    <wsdl:types>
+        <xs:schema xmlns:ns="http://org.apache.axis2/xsd" xmlns:ax210="http://dao.mgt.adc.carbon.wso2.org/xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://org.apache.axis2/xsd">
+            <xs:import namespace="http://dao.mgt.adc.carbon.wso2.org/xsd"/>
+            <xs:element name="RepositoryInformationServiceException">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="RepositoryInformationServiceException" nillable="true" type="ns1:Exception"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:complexType name="Exception">
+                <xs:sequence>
+                    <xs:element minOccurs="0" name="Message" nillable="true" type="xs:string"/>
+                </xs:sequence>
+            </xs:complexType>
+            <xs:element name="getRepositoryUrl">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="tenantId" type="xs:int"/>
+                        <xs:element minOccurs="0" name="cartridgeType" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getRepositoryUrlResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getRepositoryCredentials">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="tenantId" type="xs:int"/>
+                        <xs:element minOccurs="0" name="cartridgeType" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="alias" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getRepositoryCredentialsResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="return" nillable="true" type="ax29:RepositoryCredentials"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:schema>
+        <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://dao.mgt.adc.carbon.wso2.org/xsd">
+            <xs:complexType name="RepositoryCredentials">
+                <xs:sequence>
+                    <xs:element minOccurs="0" name="password" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="url" nillable="true" type="xs:string"/>
+                    <xs:element minOccurs="0" name="userName" nillable="true" type="xs:string"/>
+                </xs:sequence>
+            </xs:complexType>
+        </xs:schema>
+    </wsdl:types>
+    <wsdl:message name="getRepositoryCredentialsRequest">
+        <wsdl:part name="parameters" element="ns1:getRepositoryCredentials"/>
+    </wsdl:message>
+    <wsdl:message name="getRepositoryCredentialsResponse">
+        <wsdl:part name="parameters" element="ns1:getRepositoryCredentialsResponse"/>
+    </wsdl:message>
+    <wsdl:message name="RepositoryInformationServiceException">
+        <wsdl:part name="parameters" element="ns1:RepositoryInformationServiceException"/>
+    </wsdl:message>
+    <wsdl:message name="getRepositoryUrlRequest">
+        <wsdl:part name="parameters" element="ns1:getRepositoryUrl"/>
+    </wsdl:message>
+    <wsdl:message name="getRepositoryUrlResponse">
+        <wsdl:part name="parameters" element="ns1:getRepositoryUrlResponse"/>
+    </wsdl:message>
+    <wsdl:portType name="RepositoryInformationServicePortType">
+        <wsdl:operation name="getRepositoryCredentials">
+            <wsdl:input message="tns:getRepositoryCredentialsRequest" wsaw:Action="urn:getRepositoryCredentials"/>
+            <wsdl:output message="tns:getRepositoryCredentialsResponse" wsaw:Action="urn:getRepositoryCredentialsResponse"/>
+            <wsdl:fault message="tns:RepositoryInformationServiceException" name="RepositoryInformationServiceException" wsaw:Action="urn:getRepositoryCredentialsRepositoryInformationServiceException"/>
+        </wsdl:operation>
+        <wsdl:operation name="getRepositoryUrl">
+            <wsdl:input message="tns:getRepositoryUrlRequest" wsaw:Action="urn:getRepositoryUrl"/>
+            <wsdl:output message="tns:getRepositoryUrlResponse" wsaw:Action="urn:getRepositoryUrlResponse"/>
+            <wsdl:fault message="tns:RepositoryInformationServiceException" name="RepositoryInformationServiceException" wsaw:Action="urn:getRepositoryUrlRepositoryInformationServiceException"/>
+        </wsdl:operation>
+    </wsdl:portType>
+    <wsdl:binding name="RepositoryInformationServiceSoap11Binding" type="tns:RepositoryInformationServicePortType">
+        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+        <wsdl:operation name="getRepositoryCredentials">
+            <soap:operation soapAction="urn:getRepositoryCredentials" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="RepositoryInformationServiceException">
+                <soap:fault use="literal" name="RepositoryInformationServiceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="getRepositoryUrl">
+            <soap:operation soapAction="urn:getRepositoryUrl" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="RepositoryInformationServiceException">
+                <soap:fault use="literal" name="RepositoryInformationServiceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:binding name="RepositoryInformationServiceSoap12Binding" type="tns:RepositoryInformationServicePortType">
+        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+        <wsdl:operation name="getRepositoryCredentials">
+            <soap12:operation soapAction="urn:getRepositoryCredentials" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="RepositoryInformationServiceException">
+                <soap12:fault use="literal" name="RepositoryInformationServiceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="getRepositoryUrl">
+            <soap12:operation soapAction="urn:getRepositoryUrl" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output>
+                <soap12:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="RepositoryInformationServiceException">
+                <soap12:fault use="literal" name="RepositoryInformationServiceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:binding name="RepositoryInformationServiceHttpBinding" type="tns:RepositoryInformationServicePortType">
+        <http:binding verb="POST"/>
+        <wsdl:operation name="getRepositoryCredentials">
+            <http:operation location="getRepositoryCredentials"/>
+            <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="getRepositoryUrl">
+            <http:operation location="getRepositoryUrl"/>
+            <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="RepositoryInformationService">
+        <wsdl:port name="RepositoryInformationServiceHttpsSoap11Endpoint" binding="tns:RepositoryInformationServiceSoap11Binding">
+            <soap:address location="https://10.100.2.139:9443/services/RepositoryInformationService.RepositoryInformationServiceHttpsSoap11Endpoint/"/>
+        </wsdl:port>
+        <wsdl:port name="RepositoryInformationServiceHttpsSoap12Endpoint" binding="tns:RepositoryInformationServiceSoap12Binding">
+            <soap12:address location="https://10.100.2.139:9443/services/RepositoryInformationService.RepositoryInformationServiceHttpsSoap12Endpoint/"/>
+        </wsdl:port>
+        <wsdl:port name="RepositoryInformationServiceHttpsEndpoint" binding="tns:RepositoryInformationServiceHttpBinding">
+            <http:address location="https://10.100.2.139:9443/services/RepositoryInformationService.RepositoryInformationServiceHttpsEndpoint/"/>
+        </wsdl:port>
+    </wsdl:service>
+</wsdl:definitions>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/042f306f/service-stubs/org.apache.stratos.adc.reponotification.service.stub/pom.xml
----------------------------------------------------------------------
diff --git a/service-stubs/org.apache.stratos.adc.reponotification.service.stub/pom.xml b/service-stubs/org.apache.stratos.adc.reponotification.service.stub/pom.xml
new file mode 100644
index 0000000..dcf4215
--- /dev/null
+++ b/service-stubs/org.apache.stratos.adc.reponotification.service.stub/pom.xml
@@ -0,0 +1,128 @@
+<?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-parent</artifactId>
+        <version>3.0.0-SNAPSHOT</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <version>4.1.1</version>
+    <artifactId>org.apache.stratos.adc.reponotification.service.stub</artifactId>
+    <packaging>bundle</packaging>
+    <name>Apache Stratos - Repository Notification Service 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/${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/RepoNotificationService.wsdl -u -uw -o target/generated-code -p org.apache.stratos.adc.reponotification.stub -ns2p http://org.apache.axis2/xsd=org.apache.stratos.adc.reponotification.stub.types.axis2"/>
+                                      <classpath refid="wsdl2java.classpath"/>
+				     <classpath refid="maven.dependency.classpath"/>
+				    <classpath refid="maven.compile.classpath"/>
+				    <classpath refid="maven.runtime.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.reponotification.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.reponotification.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>
+    </dependencies>
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/042f306f/service-stubs/org.apache.stratos.adc.reponotification.service.stub/src/main/resources/RepoNotificationService.wsdl
----------------------------------------------------------------------
diff --git a/service-stubs/org.apache.stratos.adc.reponotification.service.stub/src/main/resources/RepoNotificationService.wsdl b/service-stubs/org.apache.stratos.adc.reponotification.service.stub/src/main/resources/RepoNotificationService.wsdl
new file mode 100644
index 0000000..bc374d7
--- /dev/null
+++ b/service-stubs/org.apache.stratos.adc.reponotification.service.stub/src/main/resources/RepoNotificationService.wsdl
@@ -0,0 +1,141 @@
+<?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.
+  -->
+
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:tns="http://service.mgt.hosting.carbon.wso2.org" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://service.mgt.hosting.carbon.wso2.org">
+    <wsdl:documentation>RepoNotificationService</wsdl:documentation>
+    <wsdl:types>
+        <xs:schema xmlns:ns="http://org.apache.axis2/xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://org.apache.axis2/xsd">
+            <xs:element name="RepoNotificationServiceException">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="RepoNotificationServiceException" nillable="true" type="ns1:Exception"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:complexType name="Exception">
+                <xs:sequence>
+                    <xs:element minOccurs="0" name="Message" nillable="true" type="xs:string"/>
+                </xs:sequence>
+            </xs:complexType>
+            <xs:element name="synchronize">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="repositoryURL" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="notifyRepoUpdate">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element minOccurs="0" name="tenantDomain" nillable="true" type="xs:string"/>
+                        <xs:element minOccurs="0" name="cartridgeType" nillable="true" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:schema>
+    </wsdl:types>
+    <wsdl:message name="notifyRepoUpdateRequest">
+        <wsdl:part name="parameters" element="ns1:notifyRepoUpdate"/>
+    </wsdl:message>
+    <wsdl:message name="RepoNotificationServiceException">
+        <wsdl:part name="parameters" element="ns1:RepoNotificationServiceException"/>
+    </wsdl:message>
+    <wsdl:message name="synchronizeRequest">
+        <wsdl:part name="parameters" element="ns1:synchronize"/>
+    </wsdl:message>
+    <wsdl:portType name="RepoNotificationServicePortType">
+        <wsdl:operation name="notifyRepoUpdate">
+            <wsdl:input message="tns:notifyRepoUpdateRequest" wsaw:Action="urn:notifyRepoUpdate"/>
+            <wsdl:fault message="tns:RepoNotificationServiceException" name="RepoNotificationServiceException" wsaw:Action="urn:notifyRepoUpdateRepoNotificationServiceException"/>
+        </wsdl:operation>
+        <wsdl:operation name="synchronize">
+            <wsdl:input message="tns:synchronizeRequest" wsaw:Action="urn:synchronize"/>
+            <wsdl:fault message="tns:RepoNotificationServiceException" name="RepoNotificationServiceException" wsaw:Action="urn:synchronizeRepoNotificationServiceException"/>
+        </wsdl:operation>
+    </wsdl:portType>
+    <wsdl:binding name="RepoNotificationServiceSoap11Binding" type="tns:RepoNotificationServicePortType">
+        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+        <wsdl:operation name="notifyRepoUpdate">
+            <soap:operation soapAction="urn:notifyRepoUpdate" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:fault name="RepoNotificationServiceException">
+                <soap:fault use="literal" name="RepoNotificationServiceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="synchronize">
+            <soap:operation soapAction="urn:synchronize" style="document"/>
+            <wsdl:input>
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:fault name="RepoNotificationServiceException">
+                <soap:fault use="literal" name="RepoNotificationServiceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:binding name="RepoNotificationServiceSoap12Binding" type="tns:RepoNotificationServicePortType">
+        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+        <wsdl:operation name="notifyRepoUpdate">
+            <soap12:operation soapAction="urn:notifyRepoUpdate" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:fault name="RepoNotificationServiceException">
+                <soap12:fault use="literal" name="RepoNotificationServiceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="synchronize">
+            <soap12:operation soapAction="urn:synchronize" style="document"/>
+            <wsdl:input>
+                <soap12:body use="literal"/>
+            </wsdl:input>
+            <wsdl:fault name="RepoNotificationServiceException">
+                <soap12:fault use="literal" name="RepoNotificationServiceException"/>
+            </wsdl:fault>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:binding name="RepoNotificationServiceHttpBinding" type="tns:RepoNotificationServicePortType">
+        <http:binding verb="POST"/>
+        <wsdl:operation name="notifyRepoUpdate">
+            <http:operation location="notifyRepoUpdate"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+        </wsdl:operation>
+        <wsdl:operation name="synchronize">
+            <http:operation location="synchronize"/>
+            <wsdl:input>
+                <mime:content type="text/xml" part="parameters"/>
+            </wsdl:input>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:service name="RepoNotificationService">
+        <wsdl:port name="RepoNotificationServiceHttpsSoap11Endpoint" binding="tns:RepoNotificationServiceSoap11Binding">
+            <soap:address location="https://192.168.93.68:9445/services/RepoNotificationService.RepoNotificationServiceHttpsSoap11Endpoint/"/>
+        </wsdl:port>
+        <wsdl:port name="RepoNotificationServiceHttpsSoap12Endpoint" binding="tns:RepoNotificationServiceSoap12Binding">
+            <soap12:address location="https://192.168.93.68:9445/services/RepoNotificationService.RepoNotificationServiceHttpsSoap12Endpoint/"/>
+        </wsdl:port>
+        <wsdl:port name="RepoNotificationServiceHttpsEndpoint" binding="tns:RepoNotificationServiceHttpBinding">
+            <http:address location="https://192.168.93.68:9445/services/RepoNotificationService.RepoNotificationServiceHttpsEndpoint/"/>
+        </wsdl:port>
+    </wsdl:service>
+</wsdl:definitions>