[Carbon-commits] [Carbon] svn commit r113349 - in trunk/carbon/service-stubs: org.wso2.carbon.dashboard.social.stub org.wso2.carbon.shindig.module.social.stub org.wso2.carbon.shindig.module.social.stub/src org.wso2.carbon.shindig.module.social.stub/src/main org.wso2.carbon.shindig.module.social.stub/src/main/java org.wso2.carbon.shindig.module.social.stub/src/main/resources
lalaji at wso2.com
lalaji at wso2.com
Sun Oct 2 01:27:22 EDT 2011
Author: lalaji
Date: Sat Oct 1 22:27:22 2011
New Revision: 113349
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=113349
Log:
Changed package name of gadget social stub
Added:
trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/
trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/pom.xml
trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/src/
trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/src/main/
trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/src/main/java/
trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/src/main/resources/
trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/src/main/resources/GadgetServerSocialDataMgtService.wsdl
Removed:
trunk/carbon/service-stubs/org.wso2.carbon.dashboard.social.stub/
Added: trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/pom.xml?pathrev=113349
==============================================================================
--- (empty file)
+++ trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/pom.xml Sat Oct 1 22:27:22 2011
@@ -0,0 +1,110 @@
+<?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.shindig.module.social.stub</artifactId>
+ <packaging>bundle</packaging>
+ <name>WSO2 Carbon - Gadget Server Social 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/GadgetServerSocialDataMgtService.wsdl -u -uw
+ -o target/generated-code -p org.wso2.carbon.shindig.module.social.stub
+ -ns2p http://utils.carbon.wso2.org/xsd=org.wso2.carbon.shindig.module.social.stub.types.carbon,http://util.java/xsd=org.wso2.carbon.shindig.module.social.stub.types.carbon,http://common.social.module.shindig.carbon.wso2.org/xsd=org.wso2.carbon.shindig.module.social.stub.types.carbon,http://ui.social.module.shindig.carbon.wso2.org/xsd=org.wso2.carbon.shindig.module.social.stub.types.carbon,http://org.apache.axis2/xsd=org.wso2.carbon.shindig.module.social.stub.types.axis2,http://neethi.apache.org/xsd=org.wso2.carbon.shindig.module.social.stub.types.neethi,http://org.wso2.wsf/tools=org.wso2.carbon.shindig.module.social.stub.types.tools"/>
+ <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>
+ <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.shindig.module.social.stub.*; version=3.2.0-SNAPSHOT,
+ </Export-Package>
+ <Carbon-Component>UIBundle</Carbon-Component>
+ </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.shindig.module.social.stub/src/main/resources/GadgetServerSocialDataMgtService.wsdl
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/src/main/resources/GadgetServerSocialDataMgtService.wsdl?pathrev=113349
==============================================================================
--- (empty file)
+++ trunk/carbon/service-stubs/org.wso2.carbon.shindig.module.social.stub/src/main/resources/GadgetServerSocialDataMgtService.wsdl Sat Oct 1 22:27:22 2011
@@ -0,0 +1,342 @@
+<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:ns="http://org.wso2.wsf/tools" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:ax2242="http://common.social.module.shindig.carbon.wso2.org/xsd" xmlns:tns="http://social.module.shindig.carbon.wso2.org" 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://social.module.shindig.carbon.wso2.org">
+ <wsdl:documentation>GadgetServerSocialDataMgtService</wsdl:documentation>
+ <wsdl:types>
+ <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://common.social.module.shindig.carbon.wso2.org/xsd">
+ <xs:complexType name="PrivacyFieldDTO">
+ <xs:sequence>
+ <xs:element minOccurs="0" name="fieldName" nillable="true" type="xs:string" />
+ <xs:element minOccurs="0" name="visibilityValue" nillable="true" type="xs:string" />
+ </xs:sequence>
+
+ </xs:complexType>
+ </xs:schema>
+ <xs:schema xmlns:ax2243="http://common.social.module.shindig.carbon.wso2.org/xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://org.wso2.wsf/tools">
+ <xs:import namespace="http://common.social.module.shindig.carbon.wso2.org/xsd" />
+ <xs:element name="updateUserProfile">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="userId" nillable="true" type="xs:string" />
+ <xs:element minOccurs="0" name="profileName" nillable="true" type="xs:string" />
+
+ <xs:element maxOccurs="unbounded" minOccurs="0" name="profileData" nillable="true" type="ax2242:PrivacyFieldDTO" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="updateUserProfileResponse">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="return" type="xs:boolean" />
+ </xs:sequence>
+
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="saveUserProfileImage">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="userId" nillable="true" type="xs:string" />
+ <xs:element minOccurs="0" name="profileImage" nillable="true" type="xs:string" />
+ <xs:element minOccurs="0" name="mediaType" nillable="true" type="xs:string" />
+ </xs:sequence>
+
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="saveUserProfileImageResponse">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="return" type="xs:boolean" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+
+ <xs:element name="isProfileImageExists">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="userId" nillable="true" type="xs:string" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="isProfileImageExistsResponse">
+ <xs:complexType>
+
+ <xs:sequence>
+ <xs:element minOccurs="0" name="return" type="xs:boolean" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="getUserProfileImage">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="userId" nillable="true" type="xs:string" />
+
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="getUserProfileImageResponse">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="return" nillable="true" type="xs:string" />
+ </xs:sequence>
+ </xs:complexType>
+
+ </xs:element>
+ <xs:element name="getUserProfile">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element minOccurs="0" name="userId" nillable="true" type="xs:string" />
+ <xs:element minOccurs="0" name="profileName" nillable="true" type="xs:string" />
+ <xs:element maxOccurs="unbounded" minOccurs="0" name="claimValues" nillable="true" type="xs:string" />
+ </xs:sequence>
+ </xs:complexType>
+
+ </xs:element>
+ <xs:element name="getUserProfileResponse">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="ax2242:PrivacyFieldDTO" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ </xs:schema>
+
+ </wsdl:types>
+ <wsdl:message name="saveUserProfileImageRequest">
+ <wsdl:part name="parameters" element="ns:saveUserProfileImage" />
+ </wsdl:message>
+ <wsdl:message name="saveUserProfileImageResponse">
+ <wsdl:part name="parameters" element="ns:saveUserProfileImageResponse" />
+ </wsdl:message>
+ <wsdl:message name="getUserProfileRequest">
+ <wsdl:part name="parameters" element="ns:getUserProfile" />
+
+ </wsdl:message>
+ <wsdl:message name="getUserProfileResponse">
+ <wsdl:part name="parameters" element="ns:getUserProfileResponse" />
+ </wsdl:message>
+ <wsdl:message name="isProfileImageExistsRequest">
+ <wsdl:part name="parameters" element="ns:isProfileImageExists" />
+ </wsdl:message>
+ <wsdl:message name="isProfileImageExistsResponse">
+ <wsdl:part name="parameters" element="ns:isProfileImageExistsResponse" />
+
+ </wsdl:message>
+ <wsdl:message name="updateUserProfileRequest">
+ <wsdl:part name="parameters" element="ns:updateUserProfile" />
+ </wsdl:message>
+ <wsdl:message name="updateUserProfileResponse">
+ <wsdl:part name="parameters" element="ns:updateUserProfileResponse" />
+ </wsdl:message>
+ <wsdl:message name="getUserProfileImageRequest">
+ <wsdl:part name="parameters" element="ns:getUserProfileImage" />
+
+ </wsdl:message>
+ <wsdl:message name="getUserProfileImageResponse">
+ <wsdl:part name="parameters" element="ns:getUserProfileImageResponse" />
+ </wsdl:message>
+ <wsdl:portType name="GadgetServerSocialDataMgtServicePortType">
+ <wsdl:operation name="saveUserProfileImage">
+ <wsdl:input message="tns:saveUserProfileImageRequest" wsaw:Action="urn:saveUserProfileImage" />
+ <wsdl:output message="tns:saveUserProfileImageResponse" wsaw:Action="urn:saveUserProfileImageResponse" />
+ </wsdl:operation>
+
+ <wsdl:operation name="getUserProfile">
+ <wsdl:input message="tns:getUserProfileRequest" wsaw:Action="urn:getUserProfile" />
+ <wsdl:output message="tns:getUserProfileResponse" wsaw:Action="urn:getUserProfileResponse" />
+ </wsdl:operation>
+ <wsdl:operation name="isProfileImageExists">
+ <wsdl:input message="tns:isProfileImageExistsRequest" wsaw:Action="urn:isProfileImageExists" />
+ <wsdl:output message="tns:isProfileImageExistsResponse" wsaw:Action="urn:isProfileImageExistsResponse" />
+ </wsdl:operation>
+ <wsdl:operation name="updateUserProfile">
+
+ <wsdl:input message="tns:updateUserProfileRequest" wsaw:Action="urn:updateUserProfile" />
+ <wsdl:output message="tns:updateUserProfileResponse" wsaw:Action="urn:updateUserProfileResponse" />
+ </wsdl:operation>
+ <wsdl:operation name="getUserProfileImage">
+ <wsdl:input message="tns:getUserProfileImageRequest" wsaw:Action="urn:getUserProfileImage" />
+ <wsdl:output message="tns:getUserProfileImageResponse" wsaw:Action="urn:getUserProfileImageResponse" />
+ </wsdl:operation>
+ </wsdl:portType>
+ <wsdl:binding name="GadgetServerSocialDataMgtServiceSoap11Binding" type="tns:GadgetServerSocialDataMgtServicePortType">
+
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
+ <wsdl:operation name="saveUserProfileImage">
+ <soap:operation soapAction="urn:saveUserProfileImage" style="document" />
+ <wsdl:input>
+ <soap:body use="literal" />
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal" />
+ </wsdl:output>
+
+ </wsdl:operation>
+ <wsdl:operation name="getUserProfile">
+ <soap:operation soapAction="urn:getUserProfile" style="document" />
+ <wsdl:input>
+ <soap:body use="literal" />
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal" />
+ </wsdl:output>
+
+ </wsdl:operation>
+ <wsdl:operation name="isProfileImageExists">
+ <soap:operation soapAction="urn:isProfileImageExists" style="document" />
+ <wsdl:input>
+ <soap:body use="literal" />
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal" />
+ </wsdl:output>
+
+ </wsdl:operation>
+ <wsdl:operation name="getUserProfileImage">
+ <soap:operation soapAction="urn:getUserProfileImage" style="document" />
+ <wsdl:input>
+ <soap:body use="literal" />
+ </wsdl:input>
+ <wsdl:output>
+ <soap:body use="literal" />
+ </wsdl:output>
+
+ </wsdl:operation>
+ <wsdl:operation name="updateUserProfile">
+ <soap:operation soapAction="urn:updateUserProfile" 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="GadgetServerSocialDataMgtServiceSoap12Binding" type="tns:GadgetServerSocialDataMgtServicePortType">
+ <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
+ <wsdl:operation name="saveUserProfileImage">
+ <soap12:operation soapAction="urn:saveUserProfileImage" style="document" />
+ <wsdl:input>
+ <soap12:body use="literal" />
+ </wsdl:input>
+
+ <wsdl:output>
+ <soap12:body use="literal" />
+ </wsdl:output>
+ </wsdl:operation>
+ <wsdl:operation name="getUserProfile">
+ <soap12:operation soapAction="urn:getUserProfile" style="document" />
+ <wsdl:input>
+ <soap12:body use="literal" />
+ </wsdl:input>
+
+ <wsdl:output>
+ <soap12:body use="literal" />
+ </wsdl:output>
+ </wsdl:operation>
+ <wsdl:operation name="isProfileImageExists">
+ <soap12:operation soapAction="urn:isProfileImageExists" style="document" />
+ <wsdl:input>
+ <soap12:body use="literal" />
+ </wsdl:input>
+
+ <wsdl:output>
+ <soap12:body use="literal" />
+ </wsdl:output>
+ </wsdl:operation>
+ <wsdl:operation name="getUserProfileImage">
+ <soap12:operation soapAction="urn:getUserProfileImage" style="document" />
+ <wsdl:input>
+ <soap12:body use="literal" />
+ </wsdl:input>
+
+ <wsdl:output>
+ <soap12:body use="literal" />
+ </wsdl:output>
+ </wsdl:operation>
+ <wsdl:operation name="updateUserProfile">
+ <soap12:operation soapAction="urn:updateUserProfile" 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="GadgetServerSocialDataMgtServiceHttpBinding" type="tns:GadgetServerSocialDataMgtServicePortType">
+ <http:binding verb="POST" />
+ <wsdl:operation name="saveUserProfileImage">
+ <http:operation location="saveUserProfileImage" />
+
+ <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="getUserProfile">
+ <http:operation location="getUserProfile" />
+
+ <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="isProfileImageExists">
+ <http:operation location="isProfileImageExists" />
+
+ <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="getUserProfileImage">
+ <http:operation location="getUserProfileImage" />
+
+ <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="updateUserProfile">
+ <http:operation location="updateUserProfile" />
+
+ <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="GadgetServerSocialDataMgtService">
+
+ <wsdl:port name="GadgetServerSocialDataMgtServiceHttpsSoap11Endpoint" binding="tns:GadgetServerSocialDataMgtServiceSoap11Binding">
+ <soap:address location="https://10.42.43.1:8443/services/GadgetServerSocialDataMgtService.GadgetServerSocialDataMgtServiceHttpsSoap11Endpoint/" />
+ </wsdl:port>
+ <wsdl:port name="GadgetServerSocialDataMgtServiceHttpSoap11Endpoint" binding="tns:GadgetServerSocialDataMgtServiceSoap11Binding">
+ <soap:address location="http://10.42.43.1:8080/services/GadgetServerSocialDataMgtService.GadgetServerSocialDataMgtServiceHttpSoap11Endpoint/" />
+ </wsdl:port>
+ <wsdl:port name="GadgetServerSocialDataMgtServiceHttpSoap12Endpoint" binding="tns:GadgetServerSocialDataMgtServiceSoap12Binding">
+ <soap12:address location="http://10.42.43.1:8080/services/GadgetServerSocialDataMgtService.GadgetServerSocialDataMgtServiceHttpSoap12Endpoint/" />
+ </wsdl:port>
+
+ <wsdl:port name="GadgetServerSocialDataMgtServiceHttpsSoap12Endpoint" binding="tns:GadgetServerSocialDataMgtServiceSoap12Binding">
+ <soap12:address location="https://10.42.43.1:8443/services/GadgetServerSocialDataMgtService.GadgetServerSocialDataMgtServiceHttpsSoap12Endpoint/" />
+ </wsdl:port>
+ <wsdl:port name="GadgetServerSocialDataMgtServiceHttpsEndpoint" binding="tns:GadgetServerSocialDataMgtServiceHttpBinding">
+ <http:address location="https://10.42.43.1:8443/services/GadgetServerSocialDataMgtService.GadgetServerSocialDataMgtServiceHttpsEndpoint/" />
+ </wsdl:port>
+ <wsdl:port name="GadgetServerSocialDataMgtServiceHttpEndpoint" binding="tns:GadgetServerSocialDataMgtServiceHttpBinding">
+ <http:address location="http://10.42.43.1:8080/services/GadgetServerSocialDataMgtService.GadgetServerSocialDataMgtServiceHttpEndpoint/" />
+ </wsdl:port>
+
+ </wsdl:service>
+</wsdl:definitions>
More information about the Carbon-commits
mailing list