[Carbon-commits] [Carbon] svn commit r91951 - in trunk/carbon/service-stubs: . org.wso2.carbon.usage.meteringqueryds.stub org.wso2.carbon.usage.meteringqueryds.stub/src org.wso2.carbon.usage.meteringqueryds.stub/src/main org.wso2.carbon.usage.meteringqueryds.stub/src/main/resources
sanjeewa at wso2.com
sanjeewa at wso2.com
Mon Apr 18 22:47:59 PDT 2011
Author: sanjeewa
Date: Mon Apr 18 22:47:59 2011
New Revision: 91951
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=91951
Log:
stub migration remains at usage
Added:
trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/
trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/pom.xml
trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/src/
trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/src/main/
trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/src/main/resources/
trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/src/main/resources/MeteringQueryDS.wsdl
Modified:
trunk/carbon/service-stubs/pom.xml
Added: trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/pom.xml?pathrev=91951
==============================================================================
--- (empty file)
+++ trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/pom.xml Mon Apr 18 22:47:59 2011
@@ -0,0 +1,117 @@
+<?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.usage.meteringqueryds.stub</artifactId>
+ <packaging>bundle</packaging>
+ <name>WSO2 Carbon - MeteringQueryDS Stub</name>
+ <url>http://wso2.org</url>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <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/MeteringQueryDS.wsdl -u -uw -o target/generated-code
+ -p org.wso2.carbon.usage.meteringqueryds.stub
+-ns2p http://ws.wso2.org/dataservice=org.wso2.carbon.usage.meteringqueryds.stub.services,http://bam.carbon.wso2.org=org.wso2.carbon.usage.meteringqueryds.stub.beans.xsd"/>
+ <classpath refid="maven.dependency.classpath"/>
+ <classpath refid="maven.compile.classpath"/>
+ <classpath refid="maven.runtime.classpath"/>
+ </java>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </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>
+ <Bundle-Name>${pom.artifactId}</Bundle-Name>
+ <Export-Package>
+ org.wso2.carbon.usage.meteringqueryds.stub.*; version="${carbon.platform.package.export.version}",
+ </Export-Package>
+ <Import-Package>
+ !org.wso2.carbon.usage.meteringqueryds.stub.*,
+ *;resolution:=optional
+ </Import-Package>
+ </instructions>
+ </configuration>
+ </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>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.axis2.wso2</groupId>
+ <artifactId>axis2</artifactId>
+ <version>${axis2.wso2.version}</version>
+ </dependency>
+ </dependencies>
+
+</project>
Added: trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/src/main/resources/MeteringQueryDS.wsdl
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/src/main/resources/MeteringQueryDS.wsdl?pathrev=91951
==============================================================================
--- (empty file)
+++ trunk/carbon/service-stubs/org.wso2.carbon.usage.meteringqueryds.stub/src/main/resources/MeteringQueryDS.wsdl Mon Apr 18 22:47:59 2011
@@ -0,0 +1,595 @@
+<!--
+ ~ 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://ws.wso2.org/dataservice"
+ xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
+ xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
+ xmlns:ns0="http://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://ws.wso2.org/dataservice">
+ <wsdl:documentation/>
+ <wsdl:types>
+ <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"
+ targetNamespace="http://bam.carbon.wso2.org">
+ <xs:element name="getHourlyServiceRequestStats">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="tenantId" nillable="true" type="xs:int"/>
+ <xs:element minOccurs="0" name="startTime" nillable="true"
+ type="xs:dateTime"/>
+
+ <xs:element minOccurs="0" name="endTime" nillable="true"
+ type="xs:dateTime"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="serviceRequestStats" type="ns0:serviceRequestStats"/>
+ <xs:complexType name="serviceRequestStats">
+ <xs:sequence>
+ <xs:element maxOccurs="unbounded" minOccurs="0" name="serviceRequestStat"
+ type="ns0:serviceRequestStat"/>
+ </xs:sequence>
+
+ </xs:complexType>
+ <xs:complexType name="serviceRequestStat">
+ <xs:sequence>
+ <xs:element name="serverUrl" type="xs:string"/>
+ <xs:element name="reqCount" type="xs:long"/>
+ <xs:element name="resCount" type="xs:long"/>
+ <xs:element name="faultCount" type="xs:long"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:element name="getBandwidthStats">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="tenantId" nillable="true" type="xs:int"/>
+ <xs:element minOccurs="0" name="startTime" nillable="true"
+ type="xs:dateTime"/>
+ <xs:element minOccurs="0" name="endTime" nillable="true"
+ type="xs:dateTime"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+
+ <xs:element name="bandwidthStats" type="ns0:bandwidthStats"/>
+ <xs:complexType name="bandwidthStats">
+ <xs:sequence>
+ <xs:element maxOccurs="unbounded" minOccurs="0" name="BandwidthStat"
+ type="ns0:BandwidthStat"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="BandwidthStat">
+ <xs:sequence>
+ <xs:element name="serverUrl" type="xs:string"/>
+
+ <xs:element name="bandwidthName" type="xs:string"/>
+ <xs:element name="incomingBandwidth" type="xs:long"/>
+ <xs:element name="outgoingBandwidth" type="xs:long"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:element name="getRegistryBandwidthUsageStats">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="tenantId" nillable="true" type="xs:int"/>
+
+ <xs:element minOccurs="0" name="startTime" nillable="true"
+ type="xs:dateTime"/>
+ <xs:element minOccurs="0" name="endTime" nillable="true"
+ type="xs:dateTime"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="regBandwidthStats" type="ns0:regBandwidthStats"/>
+ <xs:complexType name="regBandwidthStats">
+ <xs:sequence>
+ <xs:element maxOccurs="unbounded" minOccurs="0" name="regBandwidthStat"
+ type="ns0:regBandwidthStat"/>
+
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="regBandwidthStat">
+ <xs:sequence>
+ <xs:element name="bandwidthName" type="xs:string"/>
+ <xs:element name="registryBandwidth" type="xs:long"/>
+ <xs:element name="registryHistoryBandwidth" type="xs:long"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:element name="getInstanceUsageStats">
+ <xs:complexType/>
+ </xs:element>
+ <xs:element name="instanceUsageStats" type="ns0:instanceUsageStats"/>
+ <xs:complexType name="instanceUsageStats">
+ <xs:sequence>
+ <xs:element maxOccurs="unbounded" minOccurs="0" name="instanceUsageStat"
+ type="ns0:instanceUsageStat"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="instanceUsageStat">
+ <xs:sequence>
+ <xs:element name="startTimestamp" type="xs:dateTime"/>
+ <xs:element name="instanceId" type="xs:integer"/>
+ <xs:element name="stopTimestamp" type="xs:dateTime"/>
+ <xs:element name="isRunning" type="xs:boolean"/>
+ <xs:element name="serverURL" type="xs:string"/>
+ <xs:element name="serverName" type="xs:string"/>
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:element name="getDailyRegistryBandwidthUsageStats">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="tenantId" nillable="true" type="xs:int"/>
+ <xs:element minOccurs="0" name="startTime" nillable="true"
+ type="xs:dateTime"/>
+ <xs:element minOccurs="0" name="endTime" nillable="true"
+ type="xs:dateTime"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+
+ <xs:element name="getHourlyBandwidthStats">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="tenantId" nillable="true" type="xs:int"/>
+ <xs:element minOccurs="0" name="startTime" nillable="true"
+ type="xs:dateTime"/>
+ <xs:element minOccurs="0" name="endTime" nillable="true"
+ type="xs:dateTime"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+
+ <xs:element name="getServiceRequestStats">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="tenantId" nillable="true" type="xs:int"/>
+ <xs:element minOccurs="0" name="startTime" nillable="true"
+ type="xs:dateTime"/>
+ <xs:element minOccurs="0" name="endTime" nillable="true"
+ type="xs:dateTime"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+
+ </xs:schema>
+ <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"
+ targetNamespace="http://ws.wso2.org/dataservice">
+ <xs:element name="DataServiceFault" type="xs:string"/>
+ </xs:schema>
+ </wsdl:types>
+ <wsdl:message name="getHourlyBandwidthStatsRequest">
+ <wsdl:part name="parameters" element="ns0:getHourlyBandwidthStats"/>
+ </wsdl:message>
+ <wsdl:message name="getHourlyBandwidthStatsResponse">
+
+ <wsdl:part name="parameters" element="ns0:bandwidthStats"/>
+ </wsdl:message>
+ <wsdl:message name="DataServiceFault">
+ <wsdl:part name="parameters" element="ns1:DataServiceFault"/>
+ </wsdl:message>
+ <wsdl:message name="getDailyRegistryBandwidthUsageStatsRequest">
+ <wsdl:part name="parameters" element="ns0:getDailyRegistryBandwidthUsageStats"/>
+ </wsdl:message>
+ <wsdl:message name="getDailyRegistryBandwidthUsageStatsResponse">
+
+ <wsdl:part name="parameters" element="ns0:regBandwidthStats"/>
+ </wsdl:message>
+ <wsdl:message name="getServiceRequestStatsRequest">
+ <wsdl:part name="parameters" element="ns0:getServiceRequestStats"/>
+ </wsdl:message>
+ <wsdl:message name="getServiceRequestStatsResponse">
+ <wsdl:part name="parameters" element="ns0:serviceRequestStats"/>
+ </wsdl:message>
+ <wsdl:message name="getInstanceUsageStatsRequest">
+
+ <wsdl:part name="parameters" element="ns0:getInstanceUsageStats"/>
+ </wsdl:message>
+ <wsdl:message name="getInstanceUsageStatsResponse">
+ <wsdl:part name="parameters" element="ns0:instanceUsageStats"/>
+ </wsdl:message>
+ <wsdl:message name="getHourlyServiceRequestStatsRequest">
+ <wsdl:part name="parameters" element="ns0:getHourlyServiceRequestStats"/>
+ </wsdl:message>
+ <wsdl:message name="getHourlyServiceRequestStatsResponse">
+
+ <wsdl:part name="parameters" element="ns0:serviceRequestStats"/>
+ </wsdl:message>
+ <wsdl:message name="getRegistryBandwidthUsageStatsRequest">
+ <wsdl:part name="parameters" element="ns0:getRegistryBandwidthUsageStats"/>
+ </wsdl:message>
+ <wsdl:message name="getRegistryBandwidthUsageStatsResponse">
+ <wsdl:part name="parameters" element="ns0:regBandwidthStats"/>
+ </wsdl:message>
+ <wsdl:message name="getBandwidthStatsRequest">
+
+ <wsdl:part name="parameters" element="ns0:getBandwidthStats"/>
+ </wsdl:message>
+ <wsdl:message name="getBandwidthStatsResponse">
+ <wsdl:part name="parameters" element="ns0:bandwidthStats"/>
+ </wsdl:message>
+ <wsdl:portType name="MeteringQueryDSPortType">
+ <wsdl:operation name="getHourlyBandwidthStats">
+ <wsdl:documentation/>
+ <wsdl:input message="ns1:getHourlyBandwidthStatsRequest"
+ wsaw:Action="urn:getHourlyBandwidthStats"/>
+
+ <wsdl:output message="ns1:getHourlyBandwidthStatsResponse"
+ wsaw:Action="urn:getHourlyBandwidthStatsResponse"/>
+ <wsdl:fault message="ns1:DataServiceFault" name="DataServiceFault"
+ wsaw:Action="urn:getHourlyBandwidthStatsDataServiceFault"/>
+ </wsdl:operation>
+ <wsdl:operation name="getDailyRegistryBandwidthUsageStats">
+ <wsdl:documentation/>
+ <wsdl:input message="ns1:getDailyRegistryBandwidthUsageStatsRequest"
+ wsaw:Action="urn:getDailyRegistryBandwidthUsageStats"/>
+ <wsdl:output message="ns1:getDailyRegistryBandwidthUsageStatsResponse"
+ wsaw:Action="urn:getDailyRegistryBandwidthUsageStatsResponse"/>
+ <wsdl:fault message="ns1:DataServiceFault" name="DataServiceFault"
+ wsaw:Action="urn:getDailyRegistryBandwidthUsageStatsDataServiceFault"/>
+ </wsdl:operation>
+
+ <wsdl:operation name="getServiceRequestStats">
+ <wsdl:documentation/>
+ <wsdl:input message="ns1:getServiceRequestStatsRequest"
+ wsaw:Action="urn:getServiceRequestStats"/>
+ <wsdl:output message="ns1:getServiceRequestStatsResponse"
+ wsaw:Action="urn:getServiceRequestStatsResponse"/>
+ <wsdl:fault message="ns1:DataServiceFault" name="DataServiceFault"
+ wsaw:Action="urn:getServiceRequestStatsDataServiceFault"/>
+ </wsdl:operation>
+ <wsdl:operation name="getInstanceUsageStats">
+ <wsdl:documentation/>
+ <wsdl:input message="ns1:getInstanceUsageStatsRequest"
+ wsaw:Action="urn:getInstanceUsageStats"/>
+
+ <wsdl:output message="ns1:getInstanceUsageStatsResponse"
+ wsaw:Action="urn:getInstanceUsageStatsResponse"/>
+ <wsdl:fault message="ns1:DataServiceFault" name="DataServiceFault"
+ wsaw:Action="urn:getInstanceUsageStatsDataServiceFault"/>
+ </wsdl:operation>
+ <wsdl:operation name="getHourlyServiceRequestStats">
+ <wsdl:documentation/>
+ <wsdl:input message="ns1:getHourlyServiceRequestStatsRequest"
+ wsaw:Action="urn:getHourlyServiceRequestStats"/>
+ <wsdl:output message="ns1:getHourlyServiceRequestStatsResponse"
+ wsaw:Action="urn:getHourlyServiceRequestStatsResponse"/>
+ <wsdl:fault message="ns1:DataServiceFault" name="DataServiceFault"
+ wsaw:Action="urn:getHourlyServiceRequestStatsDataServiceFault"/>
+ </wsdl:operation>
+
+ <wsdl:operation name="getRegistryBandwidthUsageStats">
+ <wsdl:documentation/>
+ <wsdl:input message="ns1:getRegistryBandwidthUsageStatsRequest"
+ wsaw:Action="urn:getRegistryBandwidthUsageStats"/>
+ <wsdl:output message="ns1:getRegistryBandwidthUsageStatsResponse"
+ wsaw:Action="urn:getRegistryBandwidthUsageStatsResponse"/>
+ <wsdl:fault message="ns1:DataServiceFault" name="DataServiceFault"
+ wsaw:Action="urn:getRegistryBandwidthUsageStatsDataServiceFault"/>
+ </wsdl:operation>
+ <wsdl:operation name="getBandwidthStats">
+ <wsdl:documentation/>
+ <wsdl:input message="ns1:getBandwidthStatsRequest" wsaw:Action="urn:getBandwidthStats"/>
+
+ <wsdl:output message="ns1:getBandwidthStatsResponse"
+ wsaw:Action="urn:getBandwidthStatsResponse"/>
+ <wsdl:fault message="ns1:DataServiceFault" name="DataServiceFault"
+ wsaw:Action="urn:getBandwidthStatsDataServiceFault"/>
+ </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:binding name="MeteringQueryDSSOAP11Binding" type="ns1:MeteringQueryDSPortType">
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+ <wsdl:operation name="getHourlyBandwidthStats">
+ <soap:operation soapAction="urn:getHourlyBandwidthStats" style="document"/>
+ <wsdl:input>
+
+ <soap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+
+ <wsdl:operation name="getDailyRegistryBandwidthUsageStats">
+ <soap:operation soapAction="urn:getDailyRegistryBandwidthUsageStats" style="document"/>
+ <wsdl:input>
+ <soap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+
+ <soap:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+ <wsdl:operation name="getServiceRequestStats">
+ <soap:operation soapAction="urn:getServiceRequestStats" style="document"/>
+ <wsdl:input>
+ <soap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+
+ <soap:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+ <wsdl:operation name="getInstanceUsageStats">
+ <soap:operation soapAction="urn:getInstanceUsageStats" style="document"/>
+ <wsdl:input>
+
+ <soap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+
+ <wsdl:operation name="getHourlyServiceRequestStats">
+ <soap:operation soapAction="urn:getHourlyServiceRequestStats" style="document"/>
+ <wsdl:input>
+ <soap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+
+ <soap:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+ <wsdl:operation name="getRegistryBandwidthUsageStats">
+ <soap:operation soapAction="urn:getRegistryBandwidthUsageStats" style="document"/>
+ <wsdl:input>
+ <soap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+
+ <soap:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+ <wsdl:operation name="getBandwidthStats">
+ <soap:operation soapAction="urn:getBandwidthStats" style="document"/>
+ <wsdl:input>
+
+ <soap:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+
+ </wsdl:binding>
+ <wsdl:binding name="MeteringQueryDSSOAP12Binding" type="ns1:MeteringQueryDSPortType">
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
+ <wsdl:operation name="getHourlyBandwidthStats">
+ <soap12:operation soapAction="urn:getHourlyBandwidthStats" style="document"/>
+ <wsdl:input>
+ <soap12:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+
+ <soap12:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap12:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+ <wsdl:operation name="getDailyRegistryBandwidthUsageStats">
+ <soap12:operation soapAction="urn:getDailyRegistryBandwidthUsageStats"
+ style="document"/>
+ <wsdl:input>
+
+ <soap12:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+ <soap12:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap12:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+
+ <wsdl:operation name="getServiceRequestStats">
+ <soap12:operation soapAction="urn:getServiceRequestStats" style="document"/>
+ <wsdl:input>
+ <soap12:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+ <soap12:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+
+ <soap12:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+ <wsdl:operation name="getInstanceUsageStats">
+ <soap12:operation soapAction="urn:getInstanceUsageStats" style="document"/>
+ <wsdl:input>
+ <soap12:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+
+ <soap12:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap12:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+ <wsdl:operation name="getHourlyServiceRequestStats">
+ <soap12:operation soapAction="urn:getHourlyServiceRequestStats" style="document"/>
+ <wsdl:input>
+
+ <soap12:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+ <soap12:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap12:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+
+ <wsdl:operation name="getRegistryBandwidthUsageStats">
+ <soap12:operation soapAction="urn:getRegistryBandwidthUsageStats" style="document"/>
+ <wsdl:input>
+ <soap12:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+ <soap12:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+
+ <soap12:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+ <wsdl:operation name="getBandwidthStats">
+ <soap12:operation soapAction="urn:getBandwidthStats" style="document"/>
+ <wsdl:input>
+ <soap12:body use="literal"/>
+ </wsdl:input>
+ <wsdl:output>
+
+ <soap12:body use="literal"/>
+ </wsdl:output>
+ <wsdl:fault name="DataServiceFault">
+ <soap12:fault use="literal" name="DataServiceFault"/>
+ </wsdl:fault>
+ </wsdl:operation>
+ </wsdl:binding>
+ <wsdl:binding name="MeteringQueryDSHttpBinding" type="ns1:MeteringQueryDSPortType">
+ <http:binding verb="POST"/>
+
+ <wsdl:operation name="getHourlyBandwidthStats">
+ <http:operation location="getHourlyBandwidthStats"/>
+ <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="getDailyRegistryBandwidthUsageStats">
+ <http:operation location="getDailyRegistryBandwidthUsageStats"/>
+ <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="getServiceRequestStats">
+ <http:operation location="getServiceRequestStats"/>
+ <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="getInstanceUsageStats">
+ <http:operation location="getInstanceUsageStats"/>
+ <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="getHourlyServiceRequestStats">
+ <http:operation location="getHourlyServiceRequestStats"/>
+ <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="getRegistryBandwidthUsageStats">
+ <http:operation location="getRegistryBandwidthUsageStats"/>
+ <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="getBandwidthStats">
+ <http:operation location="getBandwidthStats"/>
+ <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="MeteringQueryDS">
+ <wsdl:port name="SOAP11Endpoint" binding="ns1:MeteringQueryDSSOAP11Binding">
+ <soap:address
+ location="http://123.231.42.63:9763/services/MeteringQueryDS.SOAP11Endpoint/"/>
+ </wsdl:port>
+ <wsdl:port name="SecureSOAP11Endpoint" binding="ns1:MeteringQueryDSSOAP11Binding">
+ <soap:address
+ location="https://123.231.42.63:9443/services/MeteringQueryDS.SecureSOAP11Endpoint/"/>
+ </wsdl:port>
+ <wsdl:port name="SecureSOAP12Endpoint" binding="ns1:MeteringQueryDSSOAP12Binding">
+
+ <soap12:address
+ location="https://123.231.42.63:9443/services/MeteringQueryDS.SecureSOAP12Endpoint/"/>
+ </wsdl:port>
+ <wsdl:port name="SOAP12Endpoint" binding="ns1:MeteringQueryDSSOAP12Binding">
+ <soap12:address
+ location="http://123.231.42.63:9763/services/MeteringQueryDS.SOAP12Endpoint/"/>
+ </wsdl:port>
+ <wsdl:port name="HTTPEndpoint" binding="ns1:MeteringQueryDSHttpBinding">
+ <http:address
+ location="http://123.231.42.63:9763/services/MeteringQueryDS.HTTPEndpoint/"/>
+ </wsdl:port>
+ <wsdl:port name="SecureHTTPEndpoint" binding="ns1:MeteringQueryDSHttpBinding">
+
+ <http:address
+ location="https://123.231.42.63:9443/services/MeteringQueryDS.SecureHTTPEndpoint/"/>
+ </wsdl:port>
+ </wsdl:service>
+</wsdl:definitions>
\ No newline at end of file
Modified: trunk/carbon/service-stubs/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/service-stubs/pom.xml?rev=91951&r1=91950&r2=91951&view=diff
==============================================================================
--- trunk/carbon/service-stubs/pom.xml (original)
+++ trunk/carbon/service-stubs/pom.xml Mon Apr 18 22:47:59 2011
@@ -179,7 +179,8 @@
<module>org.wso2.carbon.um.ws.api.stub</module>
<module>org.wso2.carbon.identity.authenticator.sso.stub</module>
<module>org.wso2.stratos.gadget.login.stub</module>
- <module>org.wso2.carbon.mashup.jsservices.stub</module>
+ <module>org.wso2.carbon.usage.meteringqueryds.stub</module>
+ <module>org.wso2.carbon.mashup.jsservices.stub</module>
</modules>
<dependencyManagement>
<dependencies>
More information about the Carbon-commits
mailing list