]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/debbugs/Debbugs.wsdl
* Debbugs.wsdl: Add get_usertag specification.
[gnu-emacs-elpa] / packages / debbugs / Debbugs.wsdl
index ed26f26ea8b07539d915fcd196f8560131405db3..aefb42750431b8be74eaa765b6984dc49e76b267 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!-- Copyright (C) 2011  Free Software Foundation, Inc.
+<!-- Copyright (C) 2011, 2012  Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -18,8 +18,8 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>. -->
 
 <!-- This file describes the bindings of the debbugs SOAP interface
-(see <http://wiki.debian.org/DebbugsSoapInterface>).  The operations
-"get_usertag" and "get_versions" are not contained (yet). -->
+(see <http://wiki.debian.org/DebbugsSoapInterface>).  The operation
+"get_versions" is not contained (yet). -->
 
 <wsdl:definitions
     name="Debbugs/SOAP"
@@ -55,6 +55,24 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>. -->
           </restriction>
         </complexContent>
        </complexType>
+
+      <complexType name="ArrayOfArrayOfAnyType">
+        <complexContent>
+          <restriction base="soapenc:Array">
+            <attribute ref="soapenc:arrayType"
+                      wsdl:arrayType="types:ArrayOfAnyType[]"/>
+          </restriction>
+        </complexContent>
+       </complexType>
+
+      <complexType name="ArrayOfArrayOfArrayOfAnyType">
+        <complexContent>
+          <restriction base="soapenc:Array">
+            <attribute ref="soapenc:arrayType"
+                      wsdl:arrayType="types:ArrayOfArrayOfAnyType[]"/>
+          </restriction>
+        </complexContent>
+       </complexType>
     </schema>
 
     <schema targetNamespace="http://xml.apache.org/xml-soap"
@@ -98,6 +116,14 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>. -->
     <wsdl:part name="soapenc:Array" type="types:ArrayOfBugNumber"/>
   </wsdl:message>
 
+  <wsdl:message name="get_usertagRequest">
+    <wsdl:part name="user" type="xsd:string"/>
+    <!-- We do not support tags -->
+  </wsdl:message>
+  <wsdl:message name="get_usertagResponse">
+    <wsdl:part name="s-gensym3" type="xsd:anyType"/>
+  </wsdl:message>
+
   <wsdl:message name="newest_bugsRequest">
     <wsdl:part name="amount" type="xsd:int"/>
   </wsdl:message>
@@ -105,6 +131,14 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>. -->
     <wsdl:part name="soapenc:Array" type="types:ArrayOfBugNumber"/>
   </wsdl:message>
 
+  <wsdl:message name="search_estRequest">
+    <wsdl:part name="query" type="types:ArrayOfArrayOfAnyType"
+              minOccurs="1" maxOccurs="unbounded"/>
+  </wsdl:message>
+  <wsdl:message name="search_estResponse">
+    <wsdl:part name="soapenc:Array" type="types:ArrayOfArrayOfArrayOfAnyType"/>
+  </wsdl:message>
+
   <wsdl:portType name="Debbugs/SOAP">
     <wsdl:operation name="get_status" parameterOrder="bugs">
       <wsdl:input message="tns:get_statusRequest">
@@ -151,6 +185,21 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>. -->
       </wsdl:output>
     </wsdl:operation>
 
+    <wsdl:operation name="get_usertag" parameterOrder="user">
+      <wsdl:input message="tns:get_usertagRequest">
+        <soap:body
+           encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
+           namespace="urn:Debbugs/SOAP"
+           use="encoded"/>
+      </wsdl:input>
+      <wsdl:output message="tns:get_usertagResponse">
+        <soap:body
+           encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
+           namespace="urn:Debbugs/SOAP"
+           use="encoded"/>
+      </wsdl:output>
+    </wsdl:operation>
+
     <wsdl:operation name="newest_bugs" parameterOrder="amount">
       <wsdl:input message="tns:newest_bugsRequest">
         <soap:body
@@ -165,6 +214,21 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>. -->
            use="encoded"/>
       </wsdl:output>
     </wsdl:operation>
+
+    <wsdl:operation name="search_est" parameterOrder="query">
+      <wsdl:input message="tns:search_estRequest">
+        <soap:body
+           encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
+           namespace="urn:Debbugs/SOAP"
+           use="encoded"/>
+      </wsdl:input>
+      <wsdl:output message="tns:search_estResponse">
+        <soap:body
+           encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
+           namespace="urn:Debbugs/SOAP"
+           use="encoded"/>
+      </wsdl:output>
+    </wsdl:operation>
   </wsdl:portType>
 
   <wsdl:binding name="Debbugs/SOAP/BINDING" type="tns:Debbugs/SOAP">
@@ -217,6 +281,22 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>. -->
       </wsdl:output>
     </wsdl:operation>
 
+    <wsdl:operation name="get_usertag">
+      <wsdlsoap:operation soapAction="Debbugs/SOAP"/>
+      <wsdl:input name="get_tagRequest">
+        <wsdlsoap:body
+           encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
+           namespace="urn:Debbugs/SOAP"
+           use="encoded"/>
+      </wsdl:input>
+      <wsdl:output name="get_tagResponse">
+        <wsdlsoap:body
+           encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
+           namespace="urn:Debbugs/SOAP"
+           use="encoded"/>
+      </wsdl:output>
+    </wsdl:operation>
+
     <wsdl:operation name="newest_bugs">
       <wsdlsoap:operation soapAction="Debbugs/SOAP"/>
       <wsdl:input name="newest_bugsRequest">
@@ -232,6 +312,22 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>. -->
            use="encoded"/>
       </wsdl:output>
     </wsdl:operation>
+
+    <wsdl:operation name="search_est">
+      <wsdlsoap:operation soapAction="Debbugs/SOAP"/>
+      <wsdl:input name="search_estRequest">
+        <wsdlsoap:body
+           encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
+           namespace="urn:Debbugs/SOAP"
+           use="encoded"/>
+      </wsdl:input>
+      <wsdl:output name="search_estResponse">
+        <wsdlsoap:body
+           encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
+           namespace="urn:Debbugs/SOAP"
+           use="encoded"/>
+      </wsdl:output>
+    </wsdl:operation>
   </wsdl:binding>
 
   <wsdl:service name="Debbugs/SOAP/SERVICE">