[Carbon-commits] [Carbon] svn commit r114077 - in trunk/carbon/service-stubs: org.wso2.carbon.bam.mediationstats.data.publisher.stub org.wso2.carbon.bam.mediationstats.data.publisher.stub/src org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main/java org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main/resources org.wso2.carbon.bam.service.data.publisher.stub/src/main/resources
kasunw at wso2.com
kasunw at wso2.com
Sun Oct 16 14:22:26 EDT 2011
Author: kasunw
Date: Sun Oct 16 11:22:26 2011
New Revision: 114077
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=114077
Log:
Added org.wso2.carbon.bam.mediationstats.data.publisher.stub for bam mediationstats data publisher
Added:
trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/
trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/pom.xml
trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/
trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main/
trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main/java/
trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main/resources/
trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main/resources/MediationStatPublisherAdmin.wsdl
Modified:
trunk/carbon/service-stubs/org.wso2.carbon.bam.service.data.publisher.stub/src/main/resources/ServiceDataPublisherAdmin.wsdl
Added: trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/pom.xml?pathrev=114077
==============================================================================
--- (empty file)
+++ trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/pom.xml Sun Oct 16 11:22:26 2011
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (c) 2005-2010, 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>service-stubs</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.bam.mediationstats.data.publisher.stub</artifactId>
+ <packaging>bundle</packaging>
+ <name>WSO2 Carbon - BAM - Mediation Stat publisher 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/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/MediationStatPublisherAdmin.wsdl -u -uw -o target/generated-code -p org.wso2.carbon.bam.mediationstats.data.publisher.stub -ns2p http://org.apache.axis2/xsd=org.wso2.carbon.bam.mediationstats.data.publisher.stub.axis2,http://conf.publisher.data.mediationstats.bam.carbon.wso2.org/xsd=org.wso2.carbon.bam.mediationstats.data.publisher.stub.conf"/>
+ <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-scr-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.4.0</version>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>
+ ${pom.artifactId}
+ </Bundle-SymbolicName>
+ <Export-Package>
+ org.wso2.carbon.bam.mediationstats.data.publisher.stub.*;
+ version="${carbon.platform.package.export.version}"
+ </Export-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.axis2.wso2</groupId>
+ <artifactId>axis2</artifactId>
+ </dependency>
+ </dependencies>
+
+</project>
Added: trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main/resources/MediationStatPublisherAdmin.wsdl
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main/resources/MediationStatPublisherAdmin.wsdl?pathrev=114077
==============================================================================
--- (empty file)
+++ trunk/carbon/service-stubs/org.wso2.carbon.bam.mediationstats.data.publisher.stub/src/main/resources/MediationStatPublisherAdmin.wsdl Sun Oct 16 11:22:26 2011
@@ -0,0 +1,120 @@
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ax29="http://conf.publisher.data.mediationstats.bam.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://services.publisher.data.mediationstats.bam.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://services.publisher.data.mediationstats.bam.carbon.wso2.org">
+ <wsdl:documentation>MediationStatPublisherAdmin</wsdl:documentation>
+ <wsdl:types>
+ <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://conf.publisher.data.mediationstats.bam.carbon.wso2.org/xsd">
+ <xs:complexType name="MediationStatConfig">
+ <xs:sequence>
+ <xs:element minOccurs="0" name="enableMediationStats" type="xs:boolean" />
+ <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>
+ <xs:schema xmlns:ns="http://org.apache.axis2/xsd" xmlns:ax210="http://conf.publisher.data.mediationstats.bam.carbon.wso2.org/xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://org.apache.axis2/xsd">
+ <xs:import namespace="http://conf.publisher.data.mediationstats.bam.carbon.wso2.org/xsd" />
+ <xs:element name="getEventingConfigData">
+ <xs:complexType>
+ <xs:sequence />
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="getEventingConfigDataResponse">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="return" nillable="true" type="ax29:MediationStatConfig" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="configureEventing">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="mediationStatConfig" nillable="true" type="ax29:MediationStatConfig" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ </xs:schema>
+ </wsdl:types>
+ <wsdl:message name="configureEventingRequest">
+ <wsdl:part name="parameters" element="ns1:configureEventing" />
+ </wsdl:message>
+ <wsdl:message name="getEventingConfigDataRequest">
+ <wsdl:part name="parameters" element="ns1:getEventingConfigData" />
+ </wsdl:message>
+ <wsdl:message name="getEventingConfigDataResponse">
+ <wsdl:part name="parameters" element="ns1:getEventingConfigDataResponse" />
+ </wsdl:message>
+ <wsdl:portType name="MediationStatPublisherAdminPortType">
+ <wsdl:operation name="configureEventing">
+ <wsdl:input message="tns:configureEventingRequest" wsaw:Action="urn:configureEventing" />
+ </wsdl:operation>
+ <wsdl:operation name="getEventingConfigData">
+ <wsdl:input message="tns:getEventingConfigDataRequest" wsaw:Action="urn:getEventingConfigData" />
+ <wsdl:output message="tns:getEventingConfigDataResponse" wsaw:Action="urn:getEventingConfigDataResponse" />
+ </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:binding name="MediationStatPublisherAdminSoap11Binding" type="tns:MediationStatPublisherAdminPortType">
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
+ <wsdl:operation name="configureEventing">
+ <soap:operation soapAction="urn:configureEventing" style="document" />
+ <wsdl:input>
+ <soap:body use="literal" />
+ </wsdl:input>
+ </wsdl:operation>
+ <wsdl:operation name="getEventingConfigData">
+ <soap:operation soapAction="urn:getEventingConfigData" 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="MediationStatPublisherAdminSoap12Binding" type="tns:MediationStatPublisherAdminPortType">
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
+ <wsdl:operation name="configureEventing">
+ <soap12:operation soapAction="urn:configureEventing" style="document" />
+ <wsdl:input>
+ <soap12:body use="literal" />
+ </wsdl:input>
+ </wsdl:operation>
+ <wsdl:operation name="getEventingConfigData">
+ <soap12:operation soapAction="urn:getEventingConfigData" 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="MediationStatPublisherAdminHttpBinding" type="tns:MediationStatPublisherAdminPortType">
+ <http:binding verb="POST" />
+ <wsdl:operation name="configureEventing">
+ <http:operation location="configureEventing" />
+ <wsdl:input>
+ <mime:content type="text/xml" part="parameters" />
+ </wsdl:input>
+ </wsdl:operation>
+ <wsdl:operation name="getEventingConfigData">
+ <http:operation location="getEventingConfigData" />
+ <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="MediationStatPublisherAdmin">
+ <wsdl:port name="MediationStatPublisherAdminHttpsSoap11Endpoint" binding="tns:MediationStatPublisherAdminSoap11Binding">
+ <soap:address location="https://localhost:8243/esb/services/MediationStatPublisherAdmin.MediationStatPublisherAdminHttpsSoap11Endpoint" />
+ </wsdl:port>
+ <wsdl:port name="MediationStatPublisherAdminHttpsSoap12Endpoint" binding="tns:MediationStatPublisherAdminSoap12Binding">
+ <soap12:address location="https://localhost:8243/esb/services/MediationStatPublisherAdmin.MediationStatPublisherAdminHttpsSoap12Endpoint" />
+ </wsdl:port>
+ <wsdl:port name="MediationStatPublisherAdminHttpsEndpoint" binding="tns:MediationStatPublisherAdminHttpBinding">
+ <http:address location="https://localhost:8243/esb/services/MediationStatPublisherAdmin.MediationStatPublisherAdminHttpsEndpoint" />
+ </wsdl:port>
+ </wsdl:service>
+</wsdl:definitions>
\ No newline at end of file
Modified: trunk/carbon/service-stubs/org.wso2.carbon.bam.service.data.publisher.stub/src/main/resources/ServiceDataPublisherAdmin.wsdl
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/service-stubs/org.wso2.carbon.bam.service.data.publisher.stub/src/main/resources/ServiceDataPublisherAdmin.wsdl?rev=114077&r1=114076&r2=114077&view=diff
==============================================================================
--- trunk/carbon/service-stubs/org.wso2.carbon.bam.service.data.publisher.stub/src/main/resources/ServiceDataPublisherAdmin.wsdl (original)
+++ trunk/carbon/service-stubs/org.wso2.carbon.bam.service.data.publisher.stub/src/main/resources/ServiceDataPublisherAdmin.wsdl Sun Oct 16 11:22:26 2011
@@ -1,3 +1,20 @@
+<!--
+ ~ Copyright (c) 2005-2010, 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.
+ -->
<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:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:tns="http://services.publisher.data.service.bam.carbon.wso2.org" xmlns:ax211="http://conf.publisher.data.service.bam.carbon.wso2.org/xsd" 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://services.publisher.data.service.bam.carbon.wso2.org">
<wsdl:documentation>ServiceDataPublisherAdmin</wsdl:documentation>
<wsdl:types>
@@ -140,4 +157,4 @@
<http:address location="https://10.216.3.206:9444/as/services/ServiceDataPublisherAdmin.ServiceDataPublisherAdminHttpsEndpoint/" />
</wsdl:port>
</wsdl:service>
-</wsdl:definitions>
\ No newline at end of file
+</wsdl:definitions>
More information about the Carbon-commits
mailing list