sekken 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +11 -0
- data/.yardopts +6 -0
- data/CONTRIBUTING.md +46 -0
- data/Gemfile +27 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +21 -0
- data/donate.png +0 -0
- data/lib/sekken.rb +75 -0
- data/lib/sekken/envelope.rb +92 -0
- data/lib/sekken/errors.rb +9 -0
- data/lib/sekken/example_message.rb +41 -0
- data/lib/sekken/httpclient.rb +35 -0
- data/lib/sekken/importer.rb +77 -0
- data/lib/sekken/message.rb +135 -0
- data/lib/sekken/operation.rb +100 -0
- data/lib/sekken/resolver.rb +20 -0
- data/lib/sekken/response.rb +50 -0
- data/lib/sekken/version.rb +5 -0
- data/lib/sekken/wsdl.rb +86 -0
- data/lib/sekken/wsdl/binding.rb +64 -0
- data/lib/sekken/wsdl/binding_operation.rb +85 -0
- data/lib/sekken/wsdl/document.rb +83 -0
- data/lib/sekken/wsdl/document_collection.rb +61 -0
- data/lib/sekken/wsdl/input_output.rb +84 -0
- data/lib/sekken/wsdl/message.rb +38 -0
- data/lib/sekken/wsdl/operation.rb +47 -0
- data/lib/sekken/wsdl/port.rb +29 -0
- data/lib/sekken/wsdl/port_type.rb +38 -0
- data/lib/sekken/wsdl/port_type_operation.rb +42 -0
- data/lib/sekken/wsdl/service.rb +55 -0
- data/lib/sekken/xml/attribute.rb +13 -0
- data/lib/sekken/xml/element.rb +82 -0
- data/lib/sekken/xml/element_builder.rb +220 -0
- data/lib/sekken/xs/schema.rb +57 -0
- data/lib/sekken/xs/schema_collection.rb +49 -0
- data/lib/sekken/xs/types.rb +272 -0
- data/sekken.gemspec +42 -0
- data/spec/fixtures/response/another_soap_fault.xml +14 -0
- data/spec/fixtures/response/authentication.xml +14 -0
- data/spec/fixtures/response/header.xml +13 -0
- data/spec/fixtures/response/list.xml +18 -0
- data/spec/fixtures/response/multi_ref.xml +39 -0
- data/spec/fixtures/response/soap_fault.xml +8 -0
- data/spec/fixtures/response/soap_fault12.xml +18 -0
- data/spec/fixtures/response/taxcloud.xml +1 -0
- data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
- data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
- data/spec/fixtures/wsdl/authentication.wsdl +63 -0
- data/spec/fixtures/wsdl/awse.wsdl +1510 -0
- data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
- data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
- data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
- data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
- data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
- data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
- data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
- data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
- data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
- data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
- data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
- data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
- data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
- data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
- data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
- data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
- data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
- data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
- data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
- data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
- data/spec/fixtures/wsdl/economic.wsdl +65660 -0
- data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
- data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
- data/spec/fixtures/wsdl/equifax.wsdl +794 -0
- data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
- data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
- data/spec/fixtures/wsdl/iws.wsdl +695 -0
- data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
- data/spec/fixtures/wsdl/jira.wsdl +3890 -0
- data/spec/fixtures/wsdl/juniper.wsdl +215 -0
- data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
- data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
- data/spec/fixtures/wsdl/ratp.wsdl +955 -0
- data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
- data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
- data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
- data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
- data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
- data/spec/fixtures/wsdl/spyne.wsdl +70 -0
- data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
- data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
- data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
- data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
- data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
- data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
- data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
- data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
- data/spec/fixtures/wsdl/temperature.wsdl +136 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
- data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
- data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
- data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
- data/spec/integration/amazon_spec.rb +51 -0
- data/spec/integration/authentication_spec.rb +38 -0
- data/spec/integration/awse_spec.rb +95 -0
- data/spec/integration/betfair_spec.rb +179 -0
- data/spec/integration/blz_service_spec.rb +46 -0
- data/spec/integration/bookt_spec.rb +59 -0
- data/spec/integration/bronto_spec.rb +178 -0
- data/spec/integration/bydexchange_spec.rb +40 -0
- data/spec/integration/crowd_spec.rb +44 -0
- data/spec/integration/data_exchange_spec.rb +27 -0
- data/spec/integration/document_literal_spec.rb +104 -0
- data/spec/integration/economic_spec.rb +64 -0
- data/spec/integration/email_verification_spec.rb +82 -0
- data/spec/integration/equifax_spec.rb +216 -0
- data/spec/integration/geotrust_spec.rb +17 -0
- data/spec/integration/interhome_spec.rb +156 -0
- data/spec/integration/iws_spec.rb +27 -0
- data/spec/integration/jetairways_spec.rb +142 -0
- data/spec/integration/jira_spec.rb +27 -0
- data/spec/integration/juniper_spec.rb +20 -0
- data/spec/integration/namespaced_actions_spec.rb +37 -0
- data/spec/integration/oracle_spec.rb +61 -0
- data/spec/integration/ratp_spec.rb +178 -0
- data/spec/integration/rio2_spec.rb +56 -0
- data/spec/integration/rpc_literal_spec.rb +101 -0
- data/spec/integration/spyne_spec.rb +60 -0
- data/spec/integration/stockquote_spec.rb +46 -0
- data/spec/integration/taxcloud_spec.rb +45 -0
- data/spec/integration/team_software_spec.rb +51 -0
- data/spec/integration/telefonkatalogen_spec.rb +42 -0
- data/spec/integration/temperature_spec.rb +71 -0
- data/spec/integration/wasmuth_spec.rb +47 -0
- data/spec/integration/xignite_spec.rb +112 -0
- data/spec/integration/yahoo_spec.rb +116 -0
- data/spec/sekken/httpclient_spec.rb +41 -0
- data/spec/sekken/operation/build_spec.rb +308 -0
- data/spec/sekken/operation/document_literal_spec.rb +53 -0
- data/spec/sekken/operation/example_body_spec.rb +95 -0
- data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
- data/spec/sekken/operation_spec.rb +169 -0
- data/spec/sekken/resolver_spec.rb +38 -0
- data/spec/sekken/response_spec.rb +17 -0
- data/spec/sekken/wsdl/document_spec.rb +191 -0
- data/spec/sekken/wsdl_spec.rb +46 -0
- data/spec/sekken/xs/complex_type_spec.rb +197 -0
- data/spec/sekken/xs/element_spec.rb +82 -0
- data/spec/sekken/xs/simple_type_spec.rb +39 -0
- data/spec/sekken_spec.rb +128 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/fixture.rb +19 -0
- data/spec/support/http_mock.rb +43 -0
- metadata +344 -0
@@ -0,0 +1,156 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://www.vedaleon.com/webservices" xmlns:s1="http://www.ebxml.org/namespaces/messageHeader" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s2="http://schemas.xmlsoap.org/ws/2002/12/secext" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://www.vedaleon.com/webservices" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
3
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Vedaleon Web Services</wsdl:documentation>
|
4
|
+
<wsdl:types>
|
5
|
+
<s:schema elementFormDefault="qualified" targetNamespace="http://www.vedaleon.com/webservices">
|
6
|
+
<s:element name="Logon">
|
7
|
+
<s:complexType />
|
8
|
+
</s:element>
|
9
|
+
<s:element name="LogonResponse">
|
10
|
+
<s:complexType>
|
11
|
+
<s:sequence>
|
12
|
+
<s:element minOccurs="0" maxOccurs="1" name="LogonResult" type="s:string" />
|
13
|
+
</s:sequence>
|
14
|
+
</s:complexType>
|
15
|
+
</s:element>
|
16
|
+
</s:schema>
|
17
|
+
<s:schema elementFormDefault="qualified" targetNamespace="http://www.ebxml.org/namespaces/messageHeader">
|
18
|
+
<s:import namespace="http://www.w3.org/XML/1998/namespace" />
|
19
|
+
<s:element name="MessageHeader" type="s1:MessageHeader" />
|
20
|
+
<s:complexType name="MessageHeader">
|
21
|
+
<s:sequence>
|
22
|
+
<s:element minOccurs="0" maxOccurs="1" name="From" type="s1:From" />
|
23
|
+
<s:element minOccurs="0" maxOccurs="1" name="To" type="s1:To" />
|
24
|
+
<s:element minOccurs="0" maxOccurs="1" name="CPAId" type="s:string" />
|
25
|
+
<s:element minOccurs="0" maxOccurs="1" name="ConversationId" type="s:string" />
|
26
|
+
<s:element minOccurs="0" maxOccurs="1" name="Service" type="s1:Service" />
|
27
|
+
<s:element minOccurs="0" maxOccurs="1" name="Action" type="s:string" />
|
28
|
+
<s:element minOccurs="0" maxOccurs="1" name="MessageData" type="s1:MessageData" />
|
29
|
+
<s:element minOccurs="0" maxOccurs="1" name="DuplicateElimination" />
|
30
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Description" type="s1:Description" />
|
31
|
+
</s:sequence>
|
32
|
+
<s:attribute form="qualified" name="id" type="s:ID" />
|
33
|
+
<s:attribute form="qualified" name="version" type="s:string" />
|
34
|
+
<s:anyAttribute />
|
35
|
+
</s:complexType>
|
36
|
+
<s:complexType name="From">
|
37
|
+
<s:sequence>
|
38
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PartyId" type="s1:PartyId" />
|
39
|
+
<s:element minOccurs="0" maxOccurs="1" name="Role" type="s:string" />
|
40
|
+
</s:sequence>
|
41
|
+
</s:complexType>
|
42
|
+
<s:complexType name="PartyId">
|
43
|
+
<s:simpleContent>
|
44
|
+
<s:extension base="s:string">
|
45
|
+
<s:attribute form="qualified" name="type" type="s:string" />
|
46
|
+
</s:extension>
|
47
|
+
</s:simpleContent>
|
48
|
+
</s:complexType>
|
49
|
+
<s:complexType name="To">
|
50
|
+
<s:sequence>
|
51
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PartyId" type="s1:PartyId" />
|
52
|
+
<s:element minOccurs="0" maxOccurs="1" name="Role" type="s:string" />
|
53
|
+
</s:sequence>
|
54
|
+
</s:complexType>
|
55
|
+
<s:complexType name="Service">
|
56
|
+
<s:simpleContent>
|
57
|
+
<s:extension base="s:string">
|
58
|
+
<s:attribute form="qualified" name="type" type="s:string" />
|
59
|
+
</s:extension>
|
60
|
+
</s:simpleContent>
|
61
|
+
</s:complexType>
|
62
|
+
<s:complexType name="MessageData">
|
63
|
+
<s:sequence>
|
64
|
+
<s:element minOccurs="0" maxOccurs="1" name="MessageId" type="s:string" />
|
65
|
+
<s:element minOccurs="0" maxOccurs="1" name="Timestamp" type="s:string" />
|
66
|
+
<s:element minOccurs="0" maxOccurs="1" name="RefToMessageId" type="s:string" />
|
67
|
+
<s:element minOccurs="0" maxOccurs="1" name="TimeToLive" type="s:dateTime" />
|
68
|
+
</s:sequence>
|
69
|
+
</s:complexType>
|
70
|
+
<s:complexType name="Description">
|
71
|
+
<s:simpleContent>
|
72
|
+
<s:extension base="s:string">
|
73
|
+
<s:attribute ref="xml:lang" use="optional" />
|
74
|
+
</s:extension>
|
75
|
+
</s:simpleContent>
|
76
|
+
</s:complexType>
|
77
|
+
</s:schema>
|
78
|
+
<s:schema elementFormDefault="qualified" targetNamespace="http://schemas.xmlsoap.org/ws/2002/12/secext">
|
79
|
+
<s:element name="Security" type="s2:Security" />
|
80
|
+
<s:complexType name="Security">
|
81
|
+
<s:sequence>
|
82
|
+
<s:element minOccurs="0" maxOccurs="1" name="UsernameToken" type="s2:SecurityUsernameToken" />
|
83
|
+
<s:element minOccurs="0" maxOccurs="1" name="BinarySecurityToken" type="s:string" />
|
84
|
+
</s:sequence>
|
85
|
+
<s:anyAttribute />
|
86
|
+
</s:complexType>
|
87
|
+
<s:complexType name="SecurityUsernameToken">
|
88
|
+
<s:sequence>
|
89
|
+
<s:element minOccurs="0" maxOccurs="1" name="Username" type="s:string" />
|
90
|
+
<s:element minOccurs="0" maxOccurs="1" name="Password" type="s:string" />
|
91
|
+
<s:element minOccurs="0" maxOccurs="1" form="unqualified" name="Organization" type="s:string" />
|
92
|
+
<s:element minOccurs="0" maxOccurs="1" form="unqualified" name="Domain" type="s:string" />
|
93
|
+
</s:sequence>
|
94
|
+
</s:complexType>
|
95
|
+
</s:schema>
|
96
|
+
</wsdl:types>
|
97
|
+
<wsdl:message name="LogonSoapIn">
|
98
|
+
<wsdl:part name="parameters" element="tns:Logon" />
|
99
|
+
</wsdl:message>
|
100
|
+
<wsdl:message name="LogonSoapOut">
|
101
|
+
<wsdl:part name="parameters" element="tns:LogonResponse" />
|
102
|
+
</wsdl:message>
|
103
|
+
<wsdl:message name="LogonMessageHeader">
|
104
|
+
<wsdl:part name="MessageHeader" element="s1:MessageHeader" />
|
105
|
+
</wsdl:message>
|
106
|
+
<wsdl:message name="LogonSecurity">
|
107
|
+
<wsdl:part name="Security" element="s2:Security" />
|
108
|
+
</wsdl:message>
|
109
|
+
<wsdl:portType name="SessionCreateSoap">
|
110
|
+
<wsdl:operation name="Logon">
|
111
|
+
<wsdl:input message="tns:LogonSoapIn" />
|
112
|
+
<wsdl:output message="tns:LogonSoapOut" />
|
113
|
+
</wsdl:operation>
|
114
|
+
</wsdl:portType>
|
115
|
+
<wsdl:binding name="SessionCreateSoap" type="tns:SessionCreateSoap">
|
116
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
117
|
+
<wsdl:operation name="Logon">
|
118
|
+
<soap:operation soapAction="http://www.vedaleon.com/webservices/Logon" style="document" />
|
119
|
+
<wsdl:input>
|
120
|
+
<soap:body use="literal" />
|
121
|
+
<soap:header message="tns:LogonMessageHeader" part="MessageHeader" use="literal" />
|
122
|
+
<soap:header message="tns:LogonSecurity" part="Security" use="literal" />
|
123
|
+
</wsdl:input>
|
124
|
+
<wsdl:output>
|
125
|
+
<soap:body use="literal" />
|
126
|
+
<soap:header message="tns:LogonMessageHeader" part="MessageHeader" use="literal" />
|
127
|
+
<soap:header message="tns:LogonSecurity" part="Security" use="literal" />
|
128
|
+
</wsdl:output>
|
129
|
+
</wsdl:operation>
|
130
|
+
</wsdl:binding>
|
131
|
+
<wsdl:binding name="SessionCreateSoap12" type="tns:SessionCreateSoap">
|
132
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
133
|
+
<wsdl:operation name="Logon">
|
134
|
+
<soap12:operation soapAction="http://www.vedaleon.com/webservices/Logon" style="document" />
|
135
|
+
<wsdl:input>
|
136
|
+
<soap12:body use="literal" />
|
137
|
+
<soap12:header message="tns:LogonMessageHeader" part="MessageHeader" use="literal" />
|
138
|
+
<soap12:header message="tns:LogonSecurity" part="Security" use="literal" />
|
139
|
+
</wsdl:input>
|
140
|
+
<wsdl:output>
|
141
|
+
<soap12:body use="literal" />
|
142
|
+
<soap12:header message="tns:LogonMessageHeader" part="MessageHeader" use="literal" />
|
143
|
+
<soap12:header message="tns:LogonSecurity" part="Security" use="literal" />
|
144
|
+
</wsdl:output>
|
145
|
+
</wsdl:operation>
|
146
|
+
</wsdl:binding>
|
147
|
+
<wsdl:service name="SessionCreate">
|
148
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Vedaleon Web Services</wsdl:documentation>
|
149
|
+
<wsdl:port name="SessionCreateSoap" binding="tns:SessionCreateSoap">
|
150
|
+
<soap:address location="http://USE_ADDRESS_RETURNED_BY_LOCATION_SERVICE/jettaobeapi/SessionCreate.asmx" />
|
151
|
+
</wsdl:port>
|
152
|
+
<wsdl:port name="SessionCreateSoap12" binding="tns:SessionCreateSoap12">
|
153
|
+
<soap12:address location="http://USE_ADDRESS_RETURNED_BY_LOCATION_SERVICE/jettaobeapi/SessionCreate.asmx" />
|
154
|
+
</wsdl:port>
|
155
|
+
</wsdl:service>
|
156
|
+
</wsdl:definitions>
|
@@ -0,0 +1,3890 @@
|
|
1
|
+
<wsdl:definitions targetNamespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" xmlns:intf="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://beans.soap.rpc.jira.atlassian.com" xmlns:tns2="http://exception.rpc.jira.atlassian.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
2
|
+
<!--WSDL created by Apache Axis version: 1.3-atlassian-1
|
3
|
+
Built on Sep 13, 2010 (04:22:38 GMT+10:00)-->
|
4
|
+
<wsdl:types>
|
5
|
+
<schema targetNamespace="http://beans.soap.rpc.jira.atlassian.com" xmlns="http://www.w3.org/2001/XMLSchema">
|
6
|
+
<import namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2"/>
|
7
|
+
<import namespace="http://exception.rpc.jira.atlassian.com"/>
|
8
|
+
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
|
9
|
+
<complexType name="RemoteComment">
|
10
|
+
<sequence>
|
11
|
+
<element name="author" nillable="true" type="xsd:string"/>
|
12
|
+
<element name="body" nillable="true" type="xsd:string"/>
|
13
|
+
<element name="created" nillable="true" type="xsd:dateTime"/>
|
14
|
+
<element name="groupLevel" nillable="true" type="xsd:string"/>
|
15
|
+
<element name="id" nillable="true" type="xsd:string"/>
|
16
|
+
<element name="roleLevel" nillable="true" type="xsd:string"/>
|
17
|
+
<element name="updateAuthor" nillable="true" type="xsd:string"/>
|
18
|
+
<element name="updated" nillable="true" type="xsd:dateTime"/>
|
19
|
+
</sequence>
|
20
|
+
</complexType>
|
21
|
+
<complexType name="RemoteConfiguration">
|
22
|
+
<sequence>
|
23
|
+
<element name="allowAttachments" type="xsd:boolean"/>
|
24
|
+
<element name="allowExternalUserManagment" type="xsd:boolean"/>
|
25
|
+
<element name="allowIssueLinking" type="xsd:boolean"/>
|
26
|
+
<element name="allowSubTasks" type="xsd:boolean"/>
|
27
|
+
<element name="allowTimeTracking" type="xsd:boolean"/>
|
28
|
+
<element name="allowUnassignedIssues" type="xsd:boolean"/>
|
29
|
+
<element name="allowVoting" type="xsd:boolean"/>
|
30
|
+
<element name="allowWatching" type="xsd:boolean"/>
|
31
|
+
<element name="timeTrackingDaysPerWeek" type="xsd:int"/>
|
32
|
+
<element name="timeTrackingHoursPerDay" type="xsd:int"/>
|
33
|
+
</sequence>
|
34
|
+
</complexType>
|
35
|
+
<complexType name="RemoteEntity">
|
36
|
+
<sequence/>
|
37
|
+
</complexType>
|
38
|
+
<complexType name="RemoteUser">
|
39
|
+
<complexContent>
|
40
|
+
<extension base="tns1:RemoteEntity">
|
41
|
+
<sequence>
|
42
|
+
<element name="email" nillable="true" type="xsd:string"/>
|
43
|
+
<element name="fullname" nillable="true" type="xsd:string"/>
|
44
|
+
<element name="name" nillable="true" type="xsd:string"/>
|
45
|
+
</sequence>
|
46
|
+
</extension>
|
47
|
+
</complexContent>
|
48
|
+
</complexType>
|
49
|
+
<complexType name="RemoteGroup">
|
50
|
+
<complexContent>
|
51
|
+
<extension base="tns1:RemoteEntity">
|
52
|
+
<sequence>
|
53
|
+
<element name="name" nillable="true" type="xsd:string"/>
|
54
|
+
<element name="users" nillable="true" type="impl:ArrayOf_tns1_RemoteUser"/>
|
55
|
+
</sequence>
|
56
|
+
</extension>
|
57
|
+
</complexContent>
|
58
|
+
</complexType>
|
59
|
+
<complexType name="RemoteTimeInfo">
|
60
|
+
<sequence>
|
61
|
+
<element name="serverTime" nillable="true" type="xsd:string"/>
|
62
|
+
<element name="timeZoneId" nillable="true" type="xsd:string"/>
|
63
|
+
</sequence>
|
64
|
+
</complexType>
|
65
|
+
<complexType name="RemoteServerInfo">
|
66
|
+
<sequence>
|
67
|
+
<element name="baseUrl" nillable="true" type="xsd:string"/>
|
68
|
+
<element name="buildDate" nillable="true" type="xsd:dateTime"/>
|
69
|
+
<element name="buildNumber" nillable="true" type="xsd:string"/>
|
70
|
+
<element name="serverTime" nillable="true" type="tns1:RemoteTimeInfo"/>
|
71
|
+
<element name="version" nillable="true" type="xsd:string"/>
|
72
|
+
</sequence>
|
73
|
+
</complexType>
|
74
|
+
<complexType abstract="true" name="AbstractRemoteEntity">
|
75
|
+
<sequence>
|
76
|
+
<element name="id" nillable="true" type="xsd:string"/>
|
77
|
+
</sequence>
|
78
|
+
</complexType>
|
79
|
+
<complexType abstract="true" name="AbstractNamedRemoteEntity">
|
80
|
+
<complexContent>
|
81
|
+
<extension base="tns1:AbstractRemoteEntity">
|
82
|
+
<sequence>
|
83
|
+
<element name="name" nillable="true" type="xsd:string"/>
|
84
|
+
</sequence>
|
85
|
+
</extension>
|
86
|
+
</complexContent>
|
87
|
+
</complexType>
|
88
|
+
<complexType name="RemoteVersion">
|
89
|
+
<complexContent>
|
90
|
+
<extension base="tns1:AbstractNamedRemoteEntity">
|
91
|
+
<sequence>
|
92
|
+
<element name="archived" type="xsd:boolean"/>
|
93
|
+
<element name="releaseDate" nillable="true" type="xsd:dateTime"/>
|
94
|
+
<element name="released" type="xsd:boolean"/>
|
95
|
+
<element name="sequence" nillable="true" type="xsd:long"/>
|
96
|
+
</sequence>
|
97
|
+
</extension>
|
98
|
+
</complexContent>
|
99
|
+
</complexType>
|
100
|
+
<complexType name="RemoteComponent">
|
101
|
+
<complexContent>
|
102
|
+
<extension base="tns1:AbstractNamedRemoteEntity">
|
103
|
+
<sequence/>
|
104
|
+
</extension>
|
105
|
+
</complexContent>
|
106
|
+
</complexType>
|
107
|
+
<complexType name="RemoteCustomFieldValue">
|
108
|
+
<sequence>
|
109
|
+
<element name="customfieldId" nillable="true" type="xsd:string"/>
|
110
|
+
<element name="key" nillable="true" type="xsd:string"/>
|
111
|
+
<element name="values" nillable="true" type="impl:ArrayOf_xsd_string"/>
|
112
|
+
</sequence>
|
113
|
+
</complexType>
|
114
|
+
<complexType name="RemoteIssue">
|
115
|
+
<complexContent>
|
116
|
+
<extension base="tns1:AbstractRemoteEntity">
|
117
|
+
<sequence>
|
118
|
+
<element name="affectsVersions" nillable="true" type="impl:ArrayOf_tns1_RemoteVersion"/>
|
119
|
+
<element name="assignee" nillable="true" type="xsd:string"/>
|
120
|
+
<element name="attachmentNames" nillable="true" type="impl:ArrayOf_xsd_string"/>
|
121
|
+
<element name="components" nillable="true" type="impl:ArrayOf_tns1_RemoteComponent"/>
|
122
|
+
<element name="created" nillable="true" type="xsd:dateTime"/>
|
123
|
+
<element name="customFieldValues" nillable="true" type="impl:ArrayOf_tns1_RemoteCustomFieldValue"/>
|
124
|
+
<element name="description" nillable="true" type="xsd:string"/>
|
125
|
+
<element name="duedate" nillable="true" type="xsd:dateTime"/>
|
126
|
+
<element name="environment" nillable="true" type="xsd:string"/>
|
127
|
+
<element name="fixVersions" nillable="true" type="impl:ArrayOf_tns1_RemoteVersion"/>
|
128
|
+
<element name="key" nillable="true" type="xsd:string"/>
|
129
|
+
<element name="priority" nillable="true" type="xsd:string"/>
|
130
|
+
<element name="project" nillable="true" type="xsd:string"/>
|
131
|
+
<element name="reporter" nillable="true" type="xsd:string"/>
|
132
|
+
<element name="resolution" nillable="true" type="xsd:string"/>
|
133
|
+
<element name="status" nillable="true" type="xsd:string"/>
|
134
|
+
<element name="summary" nillable="true" type="xsd:string"/>
|
135
|
+
<element name="type" nillable="true" type="xsd:string"/>
|
136
|
+
<element name="updated" nillable="true" type="xsd:dateTime"/>
|
137
|
+
<element name="votes" nillable="true" type="xsd:long"/>
|
138
|
+
</sequence>
|
139
|
+
</extension>
|
140
|
+
</complexContent>
|
141
|
+
</complexType>
|
142
|
+
<complexType name="RemoteFieldValue">
|
143
|
+
<sequence>
|
144
|
+
<element name="id" nillable="true" type="xsd:string"/>
|
145
|
+
<element name="values" nillable="true" type="impl:ArrayOf_xsd_string"/>
|
146
|
+
</sequence>
|
147
|
+
</complexType>
|
148
|
+
<complexType name="RemoteNamedObject">
|
149
|
+
<complexContent>
|
150
|
+
<extension base="tns1:AbstractNamedRemoteEntity">
|
151
|
+
<sequence/>
|
152
|
+
</extension>
|
153
|
+
</complexContent>
|
154
|
+
</complexType>
|
155
|
+
<complexType name="RemoteSecurityLevel">
|
156
|
+
<complexContent>
|
157
|
+
<extension base="tns1:AbstractNamedRemoteEntity">
|
158
|
+
<sequence>
|
159
|
+
<element name="description" nillable="true" type="xsd:string"/>
|
160
|
+
</sequence>
|
161
|
+
</extension>
|
162
|
+
</complexContent>
|
163
|
+
</complexType>
|
164
|
+
<complexType name="RemoteScheme">
|
165
|
+
<sequence>
|
166
|
+
<element name="description" nillable="true" type="xsd:string"/>
|
167
|
+
<element name="id" nillable="true" type="xsd:long"/>
|
168
|
+
<element name="name" nillable="true" type="xsd:string"/>
|
169
|
+
<element name="type" nillable="true" type="xsd:string"/>
|
170
|
+
</sequence>
|
171
|
+
</complexType>
|
172
|
+
<complexType name="RemotePermission">
|
173
|
+
<sequence>
|
174
|
+
<element name="name" nillable="true" type="xsd:string"/>
|
175
|
+
<element name="permission" nillable="true" type="xsd:long"/>
|
176
|
+
</sequence>
|
177
|
+
</complexType>
|
178
|
+
<complexType name="RemotePermissionMapping">
|
179
|
+
<sequence>
|
180
|
+
<element name="permission" nillable="true" type="tns1:RemotePermission"/>
|
181
|
+
<element name="remoteEntities" nillable="true" type="impl:ArrayOf_tns1_RemoteEntity"/>
|
182
|
+
</sequence>
|
183
|
+
</complexType>
|
184
|
+
<complexType name="RemotePermissionScheme">
|
185
|
+
<complexContent>
|
186
|
+
<extension base="tns1:RemoteScheme">
|
187
|
+
<sequence>
|
188
|
+
<element name="permissionMappings" nillable="true" type="impl:ArrayOf_tns1_RemotePermissionMapping"/>
|
189
|
+
</sequence>
|
190
|
+
</extension>
|
191
|
+
</complexContent>
|
192
|
+
</complexType>
|
193
|
+
<complexType name="RemoteProject">
|
194
|
+
<complexContent>
|
195
|
+
<extension base="tns1:AbstractNamedRemoteEntity">
|
196
|
+
<sequence>
|
197
|
+
<element name="description" nillable="true" type="xsd:string"/>
|
198
|
+
<element name="issueSecurityScheme" nillable="true" type="tns1:RemoteScheme"/>
|
199
|
+
<element name="key" nillable="true" type="xsd:string"/>
|
200
|
+
<element name="lead" nillable="true" type="xsd:string"/>
|
201
|
+
<element name="notificationScheme" nillable="true" type="tns1:RemoteScheme"/>
|
202
|
+
<element name="permissionScheme" nillable="true" type="tns1:RemotePermissionScheme"/>
|
203
|
+
<element name="projectUrl" nillable="true" type="xsd:string"/>
|
204
|
+
<element name="url" nillable="true" type="xsd:string"/>
|
205
|
+
</sequence>
|
206
|
+
</extension>
|
207
|
+
</complexContent>
|
208
|
+
</complexType>
|
209
|
+
<complexType abstract="true" name="AbstractRemoteConstant">
|
210
|
+
<complexContent>
|
211
|
+
<extension base="tns1:AbstractNamedRemoteEntity">
|
212
|
+
<sequence>
|
213
|
+
<element name="description" nillable="true" type="xsd:string"/>
|
214
|
+
<element name="icon" nillable="true" type="xsd:string"/>
|
215
|
+
</sequence>
|
216
|
+
</extension>
|
217
|
+
</complexContent>
|
218
|
+
</complexType>
|
219
|
+
<complexType name="RemotePriority">
|
220
|
+
<complexContent>
|
221
|
+
<extension base="tns1:AbstractRemoteConstant">
|
222
|
+
<sequence>
|
223
|
+
<element name="color" nillable="true" type="xsd:string"/>
|
224
|
+
</sequence>
|
225
|
+
</extension>
|
226
|
+
</complexContent>
|
227
|
+
</complexType>
|
228
|
+
<complexType name="RemoteResolution">
|
229
|
+
<complexContent>
|
230
|
+
<extension base="tns1:AbstractRemoteConstant">
|
231
|
+
<sequence/>
|
232
|
+
</extension>
|
233
|
+
</complexContent>
|
234
|
+
</complexType>
|
235
|
+
<complexType name="RemoteIssueType">
|
236
|
+
<complexContent>
|
237
|
+
<extension base="tns1:AbstractRemoteConstant">
|
238
|
+
<sequence>
|
239
|
+
<element name="subTask" type="xsd:boolean"/>
|
240
|
+
</sequence>
|
241
|
+
</extension>
|
242
|
+
</complexContent>
|
243
|
+
</complexType>
|
244
|
+
<complexType name="RemoteStatus">
|
245
|
+
<complexContent>
|
246
|
+
<extension base="tns1:AbstractRemoteConstant">
|
247
|
+
<sequence/>
|
248
|
+
</extension>
|
249
|
+
</complexContent>
|
250
|
+
</complexType>
|
251
|
+
<complexType name="RemoteProjectRole">
|
252
|
+
<sequence>
|
253
|
+
<element name="description" nillable="true" type="xsd:string"/>
|
254
|
+
<element name="id" nillable="true" type="xsd:long"/>
|
255
|
+
<element name="name" nillable="true" type="xsd:string"/>
|
256
|
+
</sequence>
|
257
|
+
</complexType>
|
258
|
+
<complexType name="RemoteRoleActor">
|
259
|
+
<sequence>
|
260
|
+
<element name="descriptor" nillable="true" type="xsd:string"/>
|
261
|
+
<element name="parameter" nillable="true" type="xsd:string"/>
|
262
|
+
<element name="projectRole" nillable="true" type="tns1:RemoteProjectRole"/>
|
263
|
+
<element name="type" nillable="true" type="xsd:string"/>
|
264
|
+
<element name="users" nillable="true" type="impl:ArrayOf_tns1_RemoteUser"/>
|
265
|
+
</sequence>
|
266
|
+
</complexType>
|
267
|
+
<complexType name="RemoteRoleActors">
|
268
|
+
<sequence>
|
269
|
+
<element name="projectRole" nillable="true" type="tns1:RemoteProjectRole"/>
|
270
|
+
<element name="roleActors" nillable="true" type="impl:ArrayOf_tns1_RemoteRoleActor"/>
|
271
|
+
<element name="users" nillable="true" type="impl:ArrayOf_tns1_RemoteUser"/>
|
272
|
+
</sequence>
|
273
|
+
</complexType>
|
274
|
+
<complexType name="RemoteProjectRoleActors">
|
275
|
+
<complexContent>
|
276
|
+
<extension base="tns1:RemoteRoleActors">
|
277
|
+
<sequence>
|
278
|
+
<element name="project" nillable="true" type="tns1:RemoteProject"/>
|
279
|
+
</sequence>
|
280
|
+
</extension>
|
281
|
+
</complexContent>
|
282
|
+
</complexType>
|
283
|
+
<complexType name="RemoteFilter">
|
284
|
+
<complexContent>
|
285
|
+
<extension base="tns1:AbstractNamedRemoteEntity">
|
286
|
+
<sequence>
|
287
|
+
<element name="author" nillable="true" type="xsd:string"/>
|
288
|
+
<element name="description" nillable="true" type="xsd:string"/>
|
289
|
+
<element name="project" nillable="true" type="xsd:string"/>
|
290
|
+
<element name="xml" nillable="true" type="xsd:string"/>
|
291
|
+
</sequence>
|
292
|
+
</extension>
|
293
|
+
</complexContent>
|
294
|
+
</complexType>
|
295
|
+
<complexType name="RemoteField">
|
296
|
+
<complexContent>
|
297
|
+
<extension base="tns1:AbstractNamedRemoteEntity">
|
298
|
+
<sequence/>
|
299
|
+
</extension>
|
300
|
+
</complexContent>
|
301
|
+
</complexType>
|
302
|
+
<complexType name="RemoteAvatar">
|
303
|
+
<sequence>
|
304
|
+
<element name="base64Data" nillable="true" type="xsd:string"/>
|
305
|
+
<element name="contentType" nillable="true" type="xsd:string"/>
|
306
|
+
<element name="id" type="xsd:long"/>
|
307
|
+
<element name="owner" nillable="true" type="xsd:string"/>
|
308
|
+
<element name="system" type="xsd:boolean"/>
|
309
|
+
<element name="type" nillable="true" type="xsd:string"/>
|
310
|
+
</sequence>
|
311
|
+
</complexType>
|
312
|
+
<complexType name="RemoteAttachment">
|
313
|
+
<complexContent>
|
314
|
+
<extension base="tns1:AbstractRemoteEntity">
|
315
|
+
<sequence>
|
316
|
+
<element name="author" nillable="true" type="xsd:string"/>
|
317
|
+
<element name="created" nillable="true" type="xsd:dateTime"/>
|
318
|
+
<element name="filename" nillable="true" type="xsd:string"/>
|
319
|
+
<element name="filesize" nillable="true" type="xsd:long"/>
|
320
|
+
<element name="mimetype" nillable="true" type="xsd:string"/>
|
321
|
+
</sequence>
|
322
|
+
</extension>
|
323
|
+
</complexContent>
|
324
|
+
</complexType>
|
325
|
+
<complexType name="RemoteWorklog">
|
326
|
+
<sequence>
|
327
|
+
<element name="author" nillable="true" type="xsd:string"/>
|
328
|
+
<element name="comment" nillable="true" type="xsd:string"/>
|
329
|
+
<element name="created" nillable="true" type="xsd:dateTime"/>
|
330
|
+
<element name="groupLevel" nillable="true" type="xsd:string"/>
|
331
|
+
<element name="id" nillable="true" type="xsd:string"/>
|
332
|
+
<element name="roleLevelId" nillable="true" type="xsd:string"/>
|
333
|
+
<element name="startDate" nillable="true" type="xsd:dateTime"/>
|
334
|
+
<element name="timeSpent" nillable="true" type="xsd:string"/>
|
335
|
+
<element name="timeSpentInSeconds" type="xsd:long"/>
|
336
|
+
<element name="updateAuthor" nillable="true" type="xsd:string"/>
|
337
|
+
<element name="updated" nillable="true" type="xsd:dateTime"/>
|
338
|
+
</sequence>
|
339
|
+
</complexType>
|
340
|
+
</schema>
|
341
|
+
<schema targetNamespace="http://exception.rpc.jira.atlassian.com" xmlns="http://www.w3.org/2001/XMLSchema">
|
342
|
+
<import namespace="http://beans.soap.rpc.jira.atlassian.com"/>
|
343
|
+
<import namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2"/>
|
344
|
+
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
|
345
|
+
<complexType name="RemoteException">
|
346
|
+
<sequence/>
|
347
|
+
</complexType>
|
348
|
+
<complexType name="RemoteValidationException">
|
349
|
+
<complexContent>
|
350
|
+
<extension base="tns2:RemoteException">
|
351
|
+
<sequence/>
|
352
|
+
</extension>
|
353
|
+
</complexContent>
|
354
|
+
</complexType>
|
355
|
+
<complexType name="RemotePermissionException">
|
356
|
+
<complexContent>
|
357
|
+
<extension base="tns2:RemoteException">
|
358
|
+
<sequence/>
|
359
|
+
</extension>
|
360
|
+
</complexContent>
|
361
|
+
</complexType>
|
362
|
+
<complexType name="RemoteAuthenticationException">
|
363
|
+
<complexContent>
|
364
|
+
<extension base="tns2:RemoteException">
|
365
|
+
<sequence/>
|
366
|
+
</extension>
|
367
|
+
</complexContent>
|
368
|
+
</complexType>
|
369
|
+
</schema>
|
370
|
+
<schema targetNamespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" xmlns="http://www.w3.org/2001/XMLSchema">
|
371
|
+
<import namespace="http://beans.soap.rpc.jira.atlassian.com"/>
|
372
|
+
<import namespace="http://exception.rpc.jira.atlassian.com"/>
|
373
|
+
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
|
374
|
+
<complexType name="ArrayOf_tns1_RemoteUser">
|
375
|
+
<complexContent>
|
376
|
+
<restriction base="soapenc:Array">
|
377
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteUser[]"/>
|
378
|
+
</restriction>
|
379
|
+
</complexContent>
|
380
|
+
</complexType>
|
381
|
+
<complexType name="ArrayOf_tns1_RemoteVersion">
|
382
|
+
<complexContent>
|
383
|
+
<restriction base="soapenc:Array">
|
384
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteVersion[]"/>
|
385
|
+
</restriction>
|
386
|
+
</complexContent>
|
387
|
+
</complexType>
|
388
|
+
<complexType name="ArrayOf_xsd_string">
|
389
|
+
<complexContent>
|
390
|
+
<restriction base="soapenc:Array">
|
391
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/>
|
392
|
+
</restriction>
|
393
|
+
</complexContent>
|
394
|
+
</complexType>
|
395
|
+
<complexType name="ArrayOf_tns1_RemoteComponent">
|
396
|
+
<complexContent>
|
397
|
+
<restriction base="soapenc:Array">
|
398
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteComponent[]"/>
|
399
|
+
</restriction>
|
400
|
+
</complexContent>
|
401
|
+
</complexType>
|
402
|
+
<complexType name="ArrayOf_tns1_RemoteCustomFieldValue">
|
403
|
+
<complexContent>
|
404
|
+
<restriction base="soapenc:Array">
|
405
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteCustomFieldValue[]"/>
|
406
|
+
</restriction>
|
407
|
+
</complexContent>
|
408
|
+
</complexType>
|
409
|
+
<complexType name="ArrayOf_tns1_RemoteFieldValue">
|
410
|
+
<complexContent>
|
411
|
+
<restriction base="soapenc:Array">
|
412
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteFieldValue[]"/>
|
413
|
+
</restriction>
|
414
|
+
</complexContent>
|
415
|
+
</complexType>
|
416
|
+
<complexType name="ArrayOf_tns1_RemoteNamedObject">
|
417
|
+
<complexContent>
|
418
|
+
<restriction base="soapenc:Array">
|
419
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteNamedObject[]"/>
|
420
|
+
</restriction>
|
421
|
+
</complexContent>
|
422
|
+
</complexType>
|
423
|
+
<complexType name="ArrayOf_tns1_RemoteEntity">
|
424
|
+
<complexContent>
|
425
|
+
<restriction base="soapenc:Array">
|
426
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteEntity[]"/>
|
427
|
+
</restriction>
|
428
|
+
</complexContent>
|
429
|
+
</complexType>
|
430
|
+
<complexType name="ArrayOf_tns1_RemotePermissionMapping">
|
431
|
+
<complexContent>
|
432
|
+
<restriction base="soapenc:Array">
|
433
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemotePermissionMapping[]"/>
|
434
|
+
</restriction>
|
435
|
+
</complexContent>
|
436
|
+
</complexType>
|
437
|
+
<complexType name="ArrayOf_tns1_RemotePriority">
|
438
|
+
<complexContent>
|
439
|
+
<restriction base="soapenc:Array">
|
440
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemotePriority[]"/>
|
441
|
+
</restriction>
|
442
|
+
</complexContent>
|
443
|
+
</complexType>
|
444
|
+
<complexType name="ArrayOf_tns1_RemoteResolution">
|
445
|
+
<complexContent>
|
446
|
+
<restriction base="soapenc:Array">
|
447
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteResolution[]"/>
|
448
|
+
</restriction>
|
449
|
+
</complexContent>
|
450
|
+
</complexType>
|
451
|
+
<complexType name="ArrayOf_tns1_RemoteIssueType">
|
452
|
+
<complexContent>
|
453
|
+
<restriction base="soapenc:Array">
|
454
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteIssueType[]"/>
|
455
|
+
</restriction>
|
456
|
+
</complexContent>
|
457
|
+
</complexType>
|
458
|
+
<complexType name="ArrayOf_tns1_RemoteStatus">
|
459
|
+
<complexContent>
|
460
|
+
<restriction base="soapenc:Array">
|
461
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteStatus[]"/>
|
462
|
+
</restriction>
|
463
|
+
</complexContent>
|
464
|
+
</complexType>
|
465
|
+
<complexType name="ArrayOf_tns1_RemoteProjectRole">
|
466
|
+
<complexContent>
|
467
|
+
<restriction base="soapenc:Array">
|
468
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteProjectRole[]"/>
|
469
|
+
</restriction>
|
470
|
+
</complexContent>
|
471
|
+
</complexType>
|
472
|
+
<complexType name="ArrayOf_tns1_RemoteRoleActor">
|
473
|
+
<complexContent>
|
474
|
+
<restriction base="soapenc:Array">
|
475
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteRoleActor[]"/>
|
476
|
+
</restriction>
|
477
|
+
</complexContent>
|
478
|
+
</complexType>
|
479
|
+
<complexType name="ArrayOf_tns1_RemoteScheme">
|
480
|
+
<complexContent>
|
481
|
+
<restriction base="soapenc:Array">
|
482
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteScheme[]"/>
|
483
|
+
</restriction>
|
484
|
+
</complexContent>
|
485
|
+
</complexType>
|
486
|
+
<complexType name="ArrayOf_tns1_RemoteComment">
|
487
|
+
<complexContent>
|
488
|
+
<restriction base="soapenc:Array">
|
489
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteComment[]"/>
|
490
|
+
</restriction>
|
491
|
+
</complexContent>
|
492
|
+
</complexType>
|
493
|
+
<complexType name="ArrayOf_tns1_RemoteFilter">
|
494
|
+
<complexContent>
|
495
|
+
<restriction base="soapenc:Array">
|
496
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteFilter[]"/>
|
497
|
+
</restriction>
|
498
|
+
</complexContent>
|
499
|
+
</complexType>
|
500
|
+
<complexType name="ArrayOf_tns1_RemoteField">
|
501
|
+
<complexContent>
|
502
|
+
<restriction base="soapenc:Array">
|
503
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteField[]"/>
|
504
|
+
</restriction>
|
505
|
+
</complexContent>
|
506
|
+
</complexType>
|
507
|
+
<complexType name="ArrayOf_tns1_RemoteSecurityLevel">
|
508
|
+
<complexContent>
|
509
|
+
<restriction base="soapenc:Array">
|
510
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteSecurityLevel[]"/>
|
511
|
+
</restriction>
|
512
|
+
</complexContent>
|
513
|
+
</complexType>
|
514
|
+
<complexType name="ArrayOf_tns1_RemoteAvatar">
|
515
|
+
<complexContent>
|
516
|
+
<restriction base="soapenc:Array">
|
517
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteAvatar[]"/>
|
518
|
+
</restriction>
|
519
|
+
</complexContent>
|
520
|
+
</complexType>
|
521
|
+
<complexType name="ArrayOf_tns1_RemotePermissionScheme">
|
522
|
+
<complexContent>
|
523
|
+
<restriction base="soapenc:Array">
|
524
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemotePermissionScheme[]"/>
|
525
|
+
</restriction>
|
526
|
+
</complexContent>
|
527
|
+
</complexType>
|
528
|
+
<complexType name="ArrayOf_tns1_RemotePermission">
|
529
|
+
<complexContent>
|
530
|
+
<restriction base="soapenc:Array">
|
531
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemotePermission[]"/>
|
532
|
+
</restriction>
|
533
|
+
</complexContent>
|
534
|
+
</complexType>
|
535
|
+
<complexType name="ArrayOf_xsd_base64Binary">
|
536
|
+
<complexContent>
|
537
|
+
<restriction base="soapenc:Array">
|
538
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:byte[][]"/>
|
539
|
+
</restriction>
|
540
|
+
</complexContent>
|
541
|
+
</complexType>
|
542
|
+
<complexType name="ArrayOf_tns1_RemoteAttachment">
|
543
|
+
<complexContent>
|
544
|
+
<restriction base="soapenc:Array">
|
545
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteAttachment[]"/>
|
546
|
+
</restriction>
|
547
|
+
</complexContent>
|
548
|
+
</complexType>
|
549
|
+
<complexType name="ArrayOf_tns1_RemoteWorklog">
|
550
|
+
<complexContent>
|
551
|
+
<restriction base="soapenc:Array">
|
552
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteWorklog[]"/>
|
553
|
+
</restriction>
|
554
|
+
</complexContent>
|
555
|
+
</complexType>
|
556
|
+
<complexType name="ArrayOf_tns1_RemoteIssue">
|
557
|
+
<complexContent>
|
558
|
+
<restriction base="soapenc:Array">
|
559
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteIssue[]"/>
|
560
|
+
</restriction>
|
561
|
+
</complexContent>
|
562
|
+
</complexType>
|
563
|
+
<complexType name="ArrayOf_tns1_RemoteProject">
|
564
|
+
<complexContent>
|
565
|
+
<restriction base="soapenc:Array">
|
566
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:RemoteProject[]"/>
|
567
|
+
</restriction>
|
568
|
+
</complexContent>
|
569
|
+
</complexType>
|
570
|
+
</schema>
|
571
|
+
</wsdl:types>
|
572
|
+
<wsdl:message name="getIssueResponse">
|
573
|
+
<wsdl:part name="getIssueReturn" type="tns1:RemoteIssue"></wsdl:part>
|
574
|
+
</wsdl:message>
|
575
|
+
<wsdl:message name="getProjectAvatarsResponse">
|
576
|
+
<wsdl:part name="getProjectAvatarsReturn" type="impl:ArrayOf_tns1_RemoteAvatar"></wsdl:part>
|
577
|
+
</wsdl:message>
|
578
|
+
<wsdl:message name="addUserToGroupResponse"></wsdl:message>
|
579
|
+
<wsdl:message name="getResolutionDateByKeyResponse">
|
580
|
+
<wsdl:part name="getResolutionDateByKeyReturn" type="xsd:dateTime"></wsdl:part>
|
581
|
+
</wsdl:message>
|
582
|
+
<wsdl:message name="archiveVersionRequest">
|
583
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
584
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
585
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
586
|
+
<wsdl:part name="in3" type="xsd:boolean"></wsdl:part>
|
587
|
+
</wsdl:message>
|
588
|
+
<wsdl:message name="getComponentsRequest">
|
589
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
590
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
591
|
+
</wsdl:message>
|
592
|
+
<wsdl:message name="getCommentsResponse">
|
593
|
+
<wsdl:part name="getCommentsReturn" type="impl:ArrayOf_tns1_RemoteComment"></wsdl:part>
|
594
|
+
</wsdl:message>
|
595
|
+
<wsdl:message name="updateGroupRequest">
|
596
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
597
|
+
<wsdl:part name="in1" type="tns1:RemoteGroup"></wsdl:part>
|
598
|
+
</wsdl:message>
|
599
|
+
<wsdl:message name="getProjectsNoSchemesResponse">
|
600
|
+
<wsdl:part name="getProjectsNoSchemesReturn" type="impl:ArrayOf_tns1_RemoteProject"></wsdl:part>
|
601
|
+
</wsdl:message>
|
602
|
+
<wsdl:message name="addAttachmentsToIssueRequest">
|
603
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
604
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
605
|
+
<wsdl:part name="in2" type="impl:ArrayOf_xsd_string"></wsdl:part>
|
606
|
+
<wsdl:part name="in3" type="impl:ArrayOf_xsd_base64Binary"></wsdl:part>
|
607
|
+
</wsdl:message>
|
608
|
+
<wsdl:message name="createGroupResponse">
|
609
|
+
<wsdl:part name="createGroupReturn" type="tns1:RemoteGroup"></wsdl:part>
|
610
|
+
</wsdl:message>
|
611
|
+
<wsdl:message name="getIssueTypesResponse">
|
612
|
+
<wsdl:part name="getIssueTypesReturn" type="impl:ArrayOf_tns1_RemoteIssueType"></wsdl:part>
|
613
|
+
</wsdl:message>
|
614
|
+
<wsdl:message name="hasPermissionToDeleteWorklogRequest">
|
615
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
616
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
617
|
+
</wsdl:message>
|
618
|
+
<wsdl:message name="addCommentRequest">
|
619
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
620
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
621
|
+
<wsdl:part name="in2" type="tns1:RemoteComment"></wsdl:part>
|
622
|
+
</wsdl:message>
|
623
|
+
<wsdl:message name="getResolutionDateByKeyRequest">
|
624
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
625
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
626
|
+
</wsdl:message>
|
627
|
+
<wsdl:message name="getResolutionDateByIdRequest">
|
628
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
629
|
+
<wsdl:part name="in1" type="xsd:long"></wsdl:part>
|
630
|
+
</wsdl:message>
|
631
|
+
<wsdl:message name="addActorsToProjectRoleResponse"></wsdl:message>
|
632
|
+
<wsdl:message name="getResolutionsRequest">
|
633
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
634
|
+
</wsdl:message>
|
635
|
+
<wsdl:message name="logoutRequest">
|
636
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
637
|
+
</wsdl:message>
|
638
|
+
<wsdl:message name="createProjectRequest">
|
639
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
640
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
641
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
642
|
+
<wsdl:part name="in3" type="xsd:string"></wsdl:part>
|
643
|
+
<wsdl:part name="in4" type="xsd:string"></wsdl:part>
|
644
|
+
<wsdl:part name="in5" type="xsd:string"></wsdl:part>
|
645
|
+
<wsdl:part name="in6" type="tns1:RemotePermissionScheme"></wsdl:part>
|
646
|
+
<wsdl:part name="in7" type="tns1:RemoteScheme"></wsdl:part>
|
647
|
+
<wsdl:part name="in8" type="tns1:RemoteScheme"></wsdl:part>
|
648
|
+
</wsdl:message>
|
649
|
+
<wsdl:message name="RemoteAuthenticationException">
|
650
|
+
<wsdl:part name="fault" type="tns2:RemoteAuthenticationException"></wsdl:part>
|
651
|
+
</wsdl:message>
|
652
|
+
<wsdl:message name="getServerInfoResponse">
|
653
|
+
<wsdl:part name="getServerInfoReturn" type="tns1:RemoteServerInfo"></wsdl:part>
|
654
|
+
</wsdl:message>
|
655
|
+
<wsdl:message name="getSecurityLevelResponse">
|
656
|
+
<wsdl:part name="getSecurityLevelReturn" type="tns1:RemoteSecurityLevel"></wsdl:part>
|
657
|
+
</wsdl:message>
|
658
|
+
<wsdl:message name="getProjectByKeyRequest">
|
659
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
660
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
661
|
+
</wsdl:message>
|
662
|
+
<wsdl:message name="loginRequest">
|
663
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
664
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
665
|
+
</wsdl:message>
|
666
|
+
<wsdl:message name="getCustomFieldsRequest">
|
667
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
668
|
+
</wsdl:message>
|
669
|
+
<wsdl:message name="deleteProjectResponse"></wsdl:message>
|
670
|
+
<wsdl:message name="RemoteException">
|
671
|
+
<wsdl:part name="fault" type="tns2:RemoteException"></wsdl:part>
|
672
|
+
</wsdl:message>
|
673
|
+
<wsdl:message name="createProjectFromObjectRequest">
|
674
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
675
|
+
<wsdl:part name="in1" type="tns1:RemoteProject"></wsdl:part>
|
676
|
+
</wsdl:message>
|
677
|
+
<wsdl:message name="addAttachmentsToIssueResponse">
|
678
|
+
<wsdl:part name="addAttachmentsToIssueReturn" type="xsd:boolean"></wsdl:part>
|
679
|
+
</wsdl:message>
|
680
|
+
<wsdl:message name="isProjectRoleNameUniqueRequest">
|
681
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
682
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
683
|
+
</wsdl:message>
|
684
|
+
<wsdl:message name="updateIssueResponse">
|
685
|
+
<wsdl:part name="updateIssueReturn" type="tns1:RemoteIssue"></wsdl:part>
|
686
|
+
</wsdl:message>
|
687
|
+
<wsdl:message name="getComponentsResponse">
|
688
|
+
<wsdl:part name="getComponentsReturn" type="impl:ArrayOf_tns1_RemoteComponent"></wsdl:part>
|
689
|
+
</wsdl:message>
|
690
|
+
<wsdl:message name="getIssueCountForFilterResponse">
|
691
|
+
<wsdl:part name="getIssueCountForFilterReturn" type="xsd:long"></wsdl:part>
|
692
|
+
</wsdl:message>
|
693
|
+
<wsdl:message name="getCommentResponse">
|
694
|
+
<wsdl:part name="getCommentReturn" type="tns1:RemoteComment"></wsdl:part>
|
695
|
+
</wsdl:message>
|
696
|
+
<wsdl:message name="getResolutionDateByIdResponse">
|
697
|
+
<wsdl:part name="getResolutionDateByIdReturn" type="xsd:dateTime"></wsdl:part>
|
698
|
+
</wsdl:message>
|
699
|
+
<wsdl:message name="deletePermissionSchemeRequest">
|
700
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
701
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
702
|
+
</wsdl:message>
|
703
|
+
<wsdl:message name="getCustomFieldsResponse">
|
704
|
+
<wsdl:part name="getCustomFieldsReturn" type="impl:ArrayOf_tns1_RemoteField"></wsdl:part>
|
705
|
+
</wsdl:message>
|
706
|
+
<wsdl:message name="setProjectAvatarRequest">
|
707
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
708
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
709
|
+
<wsdl:part name="in2" type="xsd:long"></wsdl:part>
|
710
|
+
</wsdl:message>
|
711
|
+
<wsdl:message name="getFavouriteFiltersRequest">
|
712
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
713
|
+
</wsdl:message>
|
714
|
+
<wsdl:message name="addCommentResponse"></wsdl:message>
|
715
|
+
<wsdl:message name="getSubTaskIssueTypesForProjectResponse">
|
716
|
+
<wsdl:part name="getSubTaskIssueTypesForProjectReturn" type="impl:ArrayOf_tns1_RemoteIssueType"></wsdl:part>
|
717
|
+
</wsdl:message>
|
718
|
+
<wsdl:message name="hasPermissionToCreateWorklogResponse">
|
719
|
+
<wsdl:part name="hasPermissionToCreateWorklogReturn" type="xsd:boolean"></wsdl:part>
|
720
|
+
</wsdl:message>
|
721
|
+
<wsdl:message name="setUserPasswordRequest">
|
722
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
723
|
+
<wsdl:part name="in1" type="tns1:RemoteUser"></wsdl:part>
|
724
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
725
|
+
</wsdl:message>
|
726
|
+
<wsdl:message name="addWorklogWithNewRemainingEstimateRequest">
|
727
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
728
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
729
|
+
<wsdl:part name="in2" type="tns1:RemoteWorklog"></wsdl:part>
|
730
|
+
<wsdl:part name="in3" type="xsd:string"></wsdl:part>
|
731
|
+
</wsdl:message>
|
732
|
+
<wsdl:message name="removeDefaultActorsFromProjectRoleResponse"></wsdl:message>
|
733
|
+
<wsdl:message name="deleteWorklogAndAutoAdjustRemainingEstimateResponse"></wsdl:message>
|
734
|
+
<wsdl:message name="addVersionResponse">
|
735
|
+
<wsdl:part name="addVersionReturn" type="tns1:RemoteVersion"></wsdl:part>
|
736
|
+
</wsdl:message>
|
737
|
+
<wsdl:message name="getIssueTypesForProjectResponse">
|
738
|
+
<wsdl:part name="getIssueTypesForProjectReturn" type="impl:ArrayOf_tns1_RemoteIssueType"></wsdl:part>
|
739
|
+
</wsdl:message>
|
740
|
+
<wsdl:message name="getIssueTypesRequest">
|
741
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
742
|
+
</wsdl:message>
|
743
|
+
<wsdl:message name="createProjectRoleRequest">
|
744
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
745
|
+
<wsdl:part name="in1" type="tns1:RemoteProjectRole"></wsdl:part>
|
746
|
+
</wsdl:message>
|
747
|
+
<wsdl:message name="updateProjectRoleRequest">
|
748
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
749
|
+
<wsdl:part name="in1" type="tns1:RemoteProjectRole"></wsdl:part>
|
750
|
+
</wsdl:message>
|
751
|
+
<wsdl:message name="getPrioritiesRequest">
|
752
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
753
|
+
</wsdl:message>
|
754
|
+
<wsdl:message name="getProjectByIdResponse">
|
755
|
+
<wsdl:part name="getProjectByIdReturn" type="tns1:RemoteProject"></wsdl:part>
|
756
|
+
</wsdl:message>
|
757
|
+
<wsdl:message name="editCommentResponse">
|
758
|
+
<wsdl:part name="editCommentReturn" type="tns1:RemoteComment"></wsdl:part>
|
759
|
+
</wsdl:message>
|
760
|
+
<wsdl:message name="getProjectWithSchemesByIdRequest">
|
761
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
762
|
+
<wsdl:part name="in1" type="xsd:long"></wsdl:part>
|
763
|
+
</wsdl:message>
|
764
|
+
<wsdl:message name="getAssociatedNotificationSchemesResponse">
|
765
|
+
<wsdl:part name="getAssociatedNotificationSchemesReturn" type="impl:ArrayOf_tns1_RemoteScheme"></wsdl:part>
|
766
|
+
</wsdl:message>
|
767
|
+
<wsdl:message name="updateUserRequest">
|
768
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
769
|
+
<wsdl:part name="in1" type="tns1:RemoteUser"></wsdl:part>
|
770
|
+
</wsdl:message>
|
771
|
+
<wsdl:message name="deleteWorklogAndAutoAdjustRemainingEstimateRequest">
|
772
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
773
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
774
|
+
</wsdl:message>
|
775
|
+
<wsdl:message name="updateWorklogAndAutoAdjustRemainingEstimateRequest">
|
776
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
777
|
+
<wsdl:part name="in1" type="tns1:RemoteWorklog"></wsdl:part>
|
778
|
+
</wsdl:message>
|
779
|
+
<wsdl:message name="releaseVersionRequest">
|
780
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
781
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
782
|
+
<wsdl:part name="in2" type="tns1:RemoteVersion"></wsdl:part>
|
783
|
+
</wsdl:message>
|
784
|
+
<wsdl:message name="updateWorklogAndRetainRemainingEstimateResponse"></wsdl:message>
|
785
|
+
<wsdl:message name="createProjectFromObjectResponse">
|
786
|
+
<wsdl:part name="createProjectFromObjectReturn" type="tns1:RemoteProject"></wsdl:part>
|
787
|
+
</wsdl:message>
|
788
|
+
<wsdl:message name="removeAllRoleActorsByNameAndTypeResponse"></wsdl:message>
|
789
|
+
<wsdl:message name="deleteIssueResponse"></wsdl:message>
|
790
|
+
<wsdl:message name="getVersionsResponse">
|
791
|
+
<wsdl:part name="getVersionsReturn" type="impl:ArrayOf_tns1_RemoteVersion"></wsdl:part>
|
792
|
+
</wsdl:message>
|
793
|
+
<wsdl:message name="deleteWorklogWithNewRemainingEstimateResponse"></wsdl:message>
|
794
|
+
<wsdl:message name="getServerInfoRequest">
|
795
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
796
|
+
</wsdl:message>
|
797
|
+
<wsdl:message name="getProjectRoleResponse">
|
798
|
+
<wsdl:part name="getProjectRoleReturn" type="tns1:RemoteProjectRole"></wsdl:part>
|
799
|
+
</wsdl:message>
|
800
|
+
<wsdl:message name="updateProjectResponse">
|
801
|
+
<wsdl:part name="updateProjectReturn" type="tns1:RemoteProject"></wsdl:part>
|
802
|
+
</wsdl:message>
|
803
|
+
<wsdl:message name="deleteWorklogAndRetainRemainingEstimateRequest">
|
804
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
805
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
806
|
+
</wsdl:message>
|
807
|
+
<wsdl:message name="getGroupResponse">
|
808
|
+
<wsdl:part name="getGroupReturn" type="tns1:RemoteGroup"></wsdl:part>
|
809
|
+
</wsdl:message>
|
810
|
+
<wsdl:message name="hasPermissionToUpdateWorklogRequest">
|
811
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
812
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
813
|
+
</wsdl:message>
|
814
|
+
<wsdl:message name="getAssociatedPermissionSchemesResponse">
|
815
|
+
<wsdl:part name="getAssociatedPermissionSchemesReturn" type="impl:ArrayOf_tns1_RemoteScheme"></wsdl:part>
|
816
|
+
</wsdl:message>
|
817
|
+
<wsdl:message name="getIssueByIdResponse">
|
818
|
+
<wsdl:part name="getIssueByIdReturn" type="tns1:RemoteIssue"></wsdl:part>
|
819
|
+
</wsdl:message>
|
820
|
+
<wsdl:message name="updateGroupResponse">
|
821
|
+
<wsdl:part name="updateGroupReturn" type="tns1:RemoteGroup"></wsdl:part>
|
822
|
+
</wsdl:message>
|
823
|
+
<wsdl:message name="hasPermissionToEditCommentRequest">
|
824
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
825
|
+
<wsdl:part name="in1" type="tns1:RemoteComment"></wsdl:part>
|
826
|
+
</wsdl:message>
|
827
|
+
<wsdl:message name="getConfigurationRequest">
|
828
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
829
|
+
</wsdl:message>
|
830
|
+
<wsdl:message name="createIssueWithSecurityLevelResponse">
|
831
|
+
<wsdl:part name="createIssueWithSecurityLevelReturn" type="tns1:RemoteIssue"></wsdl:part>
|
832
|
+
</wsdl:message>
|
833
|
+
<wsdl:message name="loginResponse">
|
834
|
+
<wsdl:part name="loginReturn" type="xsd:string"></wsdl:part>
|
835
|
+
</wsdl:message>
|
836
|
+
<wsdl:message name="getUserRequest">
|
837
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
838
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
839
|
+
</wsdl:message>
|
840
|
+
<wsdl:message name="createIssueRequest">
|
841
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
842
|
+
<wsdl:part name="in1" type="tns1:RemoteIssue"></wsdl:part>
|
843
|
+
</wsdl:message>
|
844
|
+
<wsdl:message name="hasPermissionToEditCommentResponse">
|
845
|
+
<wsdl:part name="hasPermissionToEditCommentReturn" type="xsd:boolean"></wsdl:part>
|
846
|
+
</wsdl:message>
|
847
|
+
<wsdl:message name="createProjectResponse">
|
848
|
+
<wsdl:part name="createProjectReturn" type="tns1:RemoteProject"></wsdl:part>
|
849
|
+
</wsdl:message>
|
850
|
+
<wsdl:message name="deletePermissionFromResponse">
|
851
|
+
<wsdl:part name="deletePermissionFromReturn" type="tns1:RemotePermissionScheme"></wsdl:part>
|
852
|
+
</wsdl:message>
|
853
|
+
<wsdl:message name="progressWorkflowActionRequest">
|
854
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
855
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
856
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
857
|
+
<wsdl:part name="in3" type="impl:ArrayOf_tns1_RemoteFieldValue"></wsdl:part>
|
858
|
+
</wsdl:message>
|
859
|
+
<wsdl:message name="getAllPermissionsResponse">
|
860
|
+
<wsdl:part name="getAllPermissionsReturn" type="impl:ArrayOf_tns1_RemotePermission"></wsdl:part>
|
861
|
+
</wsdl:message>
|
862
|
+
<wsdl:message name="getFieldsForActionResponse">
|
863
|
+
<wsdl:part name="getFieldsForActionReturn" type="impl:ArrayOf_tns1_RemoteField"></wsdl:part>
|
864
|
+
</wsdl:message>
|
865
|
+
<wsdl:message name="getPermissionSchemesResponse">
|
866
|
+
<wsdl:part name="getPermissionSchemesReturn" type="impl:ArrayOf_tns1_RemotePermissionScheme"></wsdl:part>
|
867
|
+
</wsdl:message>
|
868
|
+
<wsdl:message name="progressWorkflowActionResponse">
|
869
|
+
<wsdl:part name="progressWorkflowActionReturn" type="tns1:RemoteIssue"></wsdl:part>
|
870
|
+
</wsdl:message>
|
871
|
+
<wsdl:message name="isProjectRoleNameUniqueResponse">
|
872
|
+
<wsdl:part name="isProjectRoleNameUniqueReturn" type="xsd:boolean"></wsdl:part>
|
873
|
+
</wsdl:message>
|
874
|
+
<wsdl:message name="createProjectRoleResponse">
|
875
|
+
<wsdl:part name="createProjectRoleReturn" type="tns1:RemoteProjectRole"></wsdl:part>
|
876
|
+
</wsdl:message>
|
877
|
+
<wsdl:message name="removeActorsFromProjectRoleRequest">
|
878
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
879
|
+
<wsdl:part name="in1" type="impl:ArrayOf_xsd_string"></wsdl:part>
|
880
|
+
<wsdl:part name="in2" type="tns1:RemoteProjectRole"></wsdl:part>
|
881
|
+
<wsdl:part name="in3" type="tns1:RemoteProject"></wsdl:part>
|
882
|
+
<wsdl:part name="in4" type="xsd:string"></wsdl:part>
|
883
|
+
</wsdl:message>
|
884
|
+
<wsdl:message name="getWorklogsRequest">
|
885
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
886
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
887
|
+
</wsdl:message>
|
888
|
+
<wsdl:message name="getAssociatedPermissionSchemesRequest">
|
889
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
890
|
+
<wsdl:part name="in1" type="tns1:RemoteProjectRole"></wsdl:part>
|
891
|
+
</wsdl:message>
|
892
|
+
<wsdl:message name="updateWorklogAndRetainRemainingEstimateRequest">
|
893
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
894
|
+
<wsdl:part name="in1" type="tns1:RemoteWorklog"></wsdl:part>
|
895
|
+
</wsdl:message>
|
896
|
+
<wsdl:message name="getIssuesFromTextSearchWithProjectResponse">
|
897
|
+
<wsdl:part name="getIssuesFromTextSearchWithProjectReturn" type="impl:ArrayOf_tns1_RemoteIssue"></wsdl:part>
|
898
|
+
</wsdl:message>
|
899
|
+
<wsdl:message name="getGroupRequest">
|
900
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
901
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
902
|
+
</wsdl:message>
|
903
|
+
<wsdl:message name="getProjectByIdRequest">
|
904
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
905
|
+
<wsdl:part name="in1" type="xsd:long"></wsdl:part>
|
906
|
+
</wsdl:message>
|
907
|
+
<wsdl:message name="deleteProjectAvatarResponse"></wsdl:message>
|
908
|
+
<wsdl:message name="addBase64EncodedAttachmentsToIssueRequest">
|
909
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
910
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
911
|
+
<wsdl:part name="in2" type="impl:ArrayOf_xsd_string"></wsdl:part>
|
912
|
+
<wsdl:part name="in3" type="impl:ArrayOf_xsd_string"></wsdl:part>
|
913
|
+
</wsdl:message>
|
914
|
+
<wsdl:message name="getSubTaskIssueTypesResponse">
|
915
|
+
<wsdl:part name="getSubTaskIssueTypesReturn" type="impl:ArrayOf_tns1_RemoteIssueType"></wsdl:part>
|
916
|
+
</wsdl:message>
|
917
|
+
<wsdl:message name="deleteProjectRequest">
|
918
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
919
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
920
|
+
</wsdl:message>
|
921
|
+
<wsdl:message name="getFieldsForEditResponse">
|
922
|
+
<wsdl:part name="getFieldsForEditReturn" type="impl:ArrayOf_tns1_RemoteField"></wsdl:part>
|
923
|
+
</wsdl:message>
|
924
|
+
<wsdl:message name="updateWorklogWithNewRemainingEstimateRequest">
|
925
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
926
|
+
<wsdl:part name="in1" type="tns1:RemoteWorklog"></wsdl:part>
|
927
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
928
|
+
</wsdl:message>
|
929
|
+
<wsdl:message name="getAvailableActionsRequest">
|
930
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
931
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
932
|
+
</wsdl:message>
|
933
|
+
<wsdl:message name="addPermissionToResponse">
|
934
|
+
<wsdl:part name="addPermissionToReturn" type="tns1:RemotePermissionScheme"></wsdl:part>
|
935
|
+
</wsdl:message>
|
936
|
+
<wsdl:message name="createUserResponse">
|
937
|
+
<wsdl:part name="createUserReturn" type="tns1:RemoteUser"></wsdl:part>
|
938
|
+
</wsdl:message>
|
939
|
+
<wsdl:message name="getFieldsForCreateRequest">
|
940
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
941
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
942
|
+
<wsdl:part name="in2" type="xsd:long"></wsdl:part>
|
943
|
+
</wsdl:message>
|
944
|
+
<wsdl:message name="getIssueTypesForProjectRequest">
|
945
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
946
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
947
|
+
</wsdl:message>
|
948
|
+
<wsdl:message name="getPermissionSchemesRequest">
|
949
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
950
|
+
</wsdl:message>
|
951
|
+
<wsdl:message name="createUserRequest">
|
952
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
953
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
954
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
955
|
+
<wsdl:part name="in3" type="xsd:string"></wsdl:part>
|
956
|
+
<wsdl:part name="in4" type="xsd:string"></wsdl:part>
|
957
|
+
</wsdl:message>
|
958
|
+
<wsdl:message name="getResolutionsResponse">
|
959
|
+
<wsdl:part name="getResolutionsReturn" type="impl:ArrayOf_tns1_RemoteResolution"></wsdl:part>
|
960
|
+
</wsdl:message>
|
961
|
+
<wsdl:message name="getDefaultRoleActorsRequest">
|
962
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
963
|
+
<wsdl:part name="in1" type="tns1:RemoteProjectRole"></wsdl:part>
|
964
|
+
</wsdl:message>
|
965
|
+
<wsdl:message name="getProjectByKeyResponse">
|
966
|
+
<wsdl:part name="getProjectByKeyReturn" type="tns1:RemoteProject"></wsdl:part>
|
967
|
+
</wsdl:message>
|
968
|
+
<wsdl:message name="deleteWorklogWithNewRemainingEstimateRequest">
|
969
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
970
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
971
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
972
|
+
</wsdl:message>
|
973
|
+
<wsdl:message name="updateWorklogAndAutoAdjustRemainingEstimateResponse"></wsdl:message>
|
974
|
+
<wsdl:message name="getIssuesFromFilterResponse">
|
975
|
+
<wsdl:part name="getIssuesFromFilterReturn" type="impl:ArrayOf_tns1_RemoteIssue"></wsdl:part>
|
976
|
+
</wsdl:message>
|
977
|
+
<wsdl:message name="removeUserFromGroupRequest">
|
978
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
979
|
+
<wsdl:part name="in1" type="tns1:RemoteGroup"></wsdl:part>
|
980
|
+
<wsdl:part name="in2" type="tns1:RemoteUser"></wsdl:part>
|
981
|
+
</wsdl:message>
|
982
|
+
<wsdl:message name="addWorklogAndRetainRemainingEstimateResponse">
|
983
|
+
<wsdl:part name="addWorklogAndRetainRemainingEstimateReturn" type="tns1:RemoteWorklog"></wsdl:part>
|
984
|
+
</wsdl:message>
|
985
|
+
<wsdl:message name="RemoteValidationException">
|
986
|
+
<wsdl:part name="fault" type="tns2:RemoteValidationException"></wsdl:part>
|
987
|
+
</wsdl:message>
|
988
|
+
<wsdl:message name="getSecuritySchemesRequest">
|
989
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
990
|
+
</wsdl:message>
|
991
|
+
<wsdl:message name="getSecurityLevelsResponse">
|
992
|
+
<wsdl:part name="getSecurityLevelsReturn" type="impl:ArrayOf_tns1_RemoteSecurityLevel"></wsdl:part>
|
993
|
+
</wsdl:message>
|
994
|
+
<wsdl:message name="getStatusesResponse">
|
995
|
+
<wsdl:part name="getStatusesReturn" type="impl:ArrayOf_tns1_RemoteStatus"></wsdl:part>
|
996
|
+
</wsdl:message>
|
997
|
+
<wsdl:message name="getAttachmentsFromIssueResponse">
|
998
|
+
<wsdl:part name="getAttachmentsFromIssueReturn" type="impl:ArrayOf_tns1_RemoteAttachment"></wsdl:part>
|
999
|
+
</wsdl:message>
|
1000
|
+
<wsdl:message name="getIssuesFromFilterWithLimitRequest">
|
1001
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1002
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1003
|
+
<wsdl:part name="in2" type="xsd:int"></wsdl:part>
|
1004
|
+
<wsdl:part name="in3" type="xsd:int"></wsdl:part>
|
1005
|
+
</wsdl:message>
|
1006
|
+
<wsdl:message name="getAssociatedNotificationSchemesRequest">
|
1007
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1008
|
+
<wsdl:part name="in1" type="tns1:RemoteProjectRole"></wsdl:part>
|
1009
|
+
</wsdl:message>
|
1010
|
+
<wsdl:message name="getIssueRequest">
|
1011
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1012
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1013
|
+
</wsdl:message>
|
1014
|
+
<wsdl:message name="getSubTaskIssueTypesRequest">
|
1015
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1016
|
+
</wsdl:message>
|
1017
|
+
<wsdl:message name="refreshCustomFieldsResponse"></wsdl:message>
|
1018
|
+
<wsdl:message name="getFieldsForEditRequest">
|
1019
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1020
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1021
|
+
</wsdl:message>
|
1022
|
+
<wsdl:message name="setNewProjectAvatarRequest">
|
1023
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1024
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1025
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
1026
|
+
<wsdl:part name="in3" type="xsd:string"></wsdl:part>
|
1027
|
+
</wsdl:message>
|
1028
|
+
<wsdl:message name="updateWorklogWithNewRemainingEstimateResponse"></wsdl:message>
|
1029
|
+
<wsdl:message name="deletePermissionSchemeResponse"></wsdl:message>
|
1030
|
+
<wsdl:message name="removeAllRoleActorsByNameAndTypeRequest">
|
1031
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1032
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1033
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
1034
|
+
</wsdl:message>
|
1035
|
+
<wsdl:message name="getIssuesFromTextSearchRequest">
|
1036
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1037
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1038
|
+
</wsdl:message>
|
1039
|
+
<wsdl:message name="getFieldsForActionRequest">
|
1040
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1041
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1042
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
1043
|
+
</wsdl:message>
|
1044
|
+
<wsdl:message name="getFieldsForCreateResponse">
|
1045
|
+
<wsdl:part name="getFieldsForCreateReturn" type="impl:ArrayOf_tns1_RemoteField"></wsdl:part>
|
1046
|
+
</wsdl:message>
|
1047
|
+
<wsdl:message name="archiveVersionResponse"></wsdl:message>
|
1048
|
+
<wsdl:message name="deleteProjectAvatarRequest">
|
1049
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1050
|
+
<wsdl:part name="in1" type="xsd:long"></wsdl:part>
|
1051
|
+
</wsdl:message>
|
1052
|
+
<wsdl:message name="getConfigurationResponse">
|
1053
|
+
<wsdl:part name="getConfigurationReturn" type="tns1:RemoteConfiguration"></wsdl:part>
|
1054
|
+
</wsdl:message>
|
1055
|
+
<wsdl:message name="removeDefaultActorsFromProjectRoleRequest">
|
1056
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1057
|
+
<wsdl:part name="in1" type="impl:ArrayOf_xsd_string"></wsdl:part>
|
1058
|
+
<wsdl:part name="in2" type="tns1:RemoteProjectRole"></wsdl:part>
|
1059
|
+
<wsdl:part name="in3" type="xsd:string"></wsdl:part>
|
1060
|
+
</wsdl:message>
|
1061
|
+
<wsdl:message name="deleteProjectRoleResponse"></wsdl:message>
|
1062
|
+
<wsdl:message name="getFavouriteFiltersResponse">
|
1063
|
+
<wsdl:part name="getFavouriteFiltersReturn" type="impl:ArrayOf_tns1_RemoteFilter"></wsdl:part>
|
1064
|
+
</wsdl:message>
|
1065
|
+
<wsdl:message name="addWorklogAndAutoAdjustRemainingEstimateRequest">
|
1066
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1067
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1068
|
+
<wsdl:part name="in2" type="tns1:RemoteWorklog"></wsdl:part>
|
1069
|
+
</wsdl:message>
|
1070
|
+
<wsdl:message name="getSubTaskIssueTypesForProjectRequest">
|
1071
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1072
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1073
|
+
</wsdl:message>
|
1074
|
+
<wsdl:message name="getProjectRolesRequest">
|
1075
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1076
|
+
</wsdl:message>
|
1077
|
+
<wsdl:message name="addWorklogAndRetainRemainingEstimateRequest">
|
1078
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1079
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1080
|
+
<wsdl:part name="in2" type="tns1:RemoteWorklog"></wsdl:part>
|
1081
|
+
</wsdl:message>
|
1082
|
+
<wsdl:message name="getStatusesRequest">
|
1083
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1084
|
+
</wsdl:message>
|
1085
|
+
<wsdl:message name="getIssuesFromJqlSearchResponse">
|
1086
|
+
<wsdl:part name="getIssuesFromJqlSearchReturn" type="impl:ArrayOf_tns1_RemoteIssue"></wsdl:part>
|
1087
|
+
</wsdl:message>
|
1088
|
+
<wsdl:message name="logoutResponse">
|
1089
|
+
<wsdl:part name="logoutReturn" type="xsd:boolean"></wsdl:part>
|
1090
|
+
</wsdl:message>
|
1091
|
+
<wsdl:message name="setUserPasswordResponse"></wsdl:message>
|
1092
|
+
<wsdl:message name="createIssueWithParentWithSecurityLevelResponse">
|
1093
|
+
<wsdl:part name="createIssueWithParentWithSecurityLevelReturn" type="tns1:RemoteIssue"></wsdl:part>
|
1094
|
+
</wsdl:message>
|
1095
|
+
<wsdl:message name="RemotePermissionException">
|
1096
|
+
<wsdl:part name="fault" type="tns2:RemotePermissionException"></wsdl:part>
|
1097
|
+
</wsdl:message>
|
1098
|
+
<wsdl:message name="refreshCustomFieldsRequest">
|
1099
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1100
|
+
</wsdl:message>
|
1101
|
+
<wsdl:message name="getAllPermissionsRequest">
|
1102
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1103
|
+
</wsdl:message>
|
1104
|
+
<wsdl:message name="getSecurityLevelsRequest">
|
1105
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1106
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1107
|
+
</wsdl:message>
|
1108
|
+
<wsdl:message name="getSavedFiltersResponse">
|
1109
|
+
<wsdl:part name="getSavedFiltersReturn" type="impl:ArrayOf_tns1_RemoteFilter"></wsdl:part>
|
1110
|
+
</wsdl:message>
|
1111
|
+
<wsdl:message name="getSecurityLevelRequest">
|
1112
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1113
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1114
|
+
</wsdl:message>
|
1115
|
+
<wsdl:message name="getIssuesFromTextSearchWithLimitRequest">
|
1116
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1117
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1118
|
+
<wsdl:part name="in2" type="xsd:int"></wsdl:part>
|
1119
|
+
<wsdl:part name="in3" type="xsd:int"></wsdl:part>
|
1120
|
+
</wsdl:message>
|
1121
|
+
<wsdl:message name="getProjectAvatarResponse">
|
1122
|
+
<wsdl:part name="getProjectAvatarReturn" type="tns1:RemoteAvatar"></wsdl:part>
|
1123
|
+
</wsdl:message>
|
1124
|
+
<wsdl:message name="createPermissionSchemeResponse">
|
1125
|
+
<wsdl:part name="createPermissionSchemeReturn" type="tns1:RemotePermissionScheme"></wsdl:part>
|
1126
|
+
</wsdl:message>
|
1127
|
+
<wsdl:message name="deleteUserRequest">
|
1128
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1129
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1130
|
+
</wsdl:message>
|
1131
|
+
<wsdl:message name="getProjectAvatarsRequest">
|
1132
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1133
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1134
|
+
<wsdl:part name="in2" type="xsd:boolean"></wsdl:part>
|
1135
|
+
</wsdl:message>
|
1136
|
+
<wsdl:message name="addWorklogWithNewRemainingEstimateResponse">
|
1137
|
+
<wsdl:part name="addWorklogWithNewRemainingEstimateReturn" type="tns1:RemoteWorklog"></wsdl:part>
|
1138
|
+
</wsdl:message>
|
1139
|
+
<wsdl:message name="getPrioritiesResponse">
|
1140
|
+
<wsdl:part name="getPrioritiesReturn" type="impl:ArrayOf_tns1_RemotePriority"></wsdl:part>
|
1141
|
+
</wsdl:message>
|
1142
|
+
<wsdl:message name="deletePermissionFromRequest">
|
1143
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1144
|
+
<wsdl:part name="in1" type="tns1:RemotePermissionScheme"></wsdl:part>
|
1145
|
+
<wsdl:part name="in2" type="tns1:RemotePermission"></wsdl:part>
|
1146
|
+
<wsdl:part name="in3" type="tns1:RemoteEntity"></wsdl:part>
|
1147
|
+
</wsdl:message>
|
1148
|
+
<wsdl:message name="releaseVersionResponse"></wsdl:message>
|
1149
|
+
<wsdl:message name="updateProjectRequest">
|
1150
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1151
|
+
<wsdl:part name="in1" type="tns1:RemoteProject"></wsdl:part>
|
1152
|
+
</wsdl:message>
|
1153
|
+
<wsdl:message name="getIssuesFromTextSearchWithLimitResponse">
|
1154
|
+
<wsdl:part name="getIssuesFromTextSearchWithLimitReturn" type="impl:ArrayOf_tns1_RemoteIssue"></wsdl:part>
|
1155
|
+
</wsdl:message>
|
1156
|
+
<wsdl:message name="hasPermissionToCreateWorklogRequest">
|
1157
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1158
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1159
|
+
</wsdl:message>
|
1160
|
+
<wsdl:message name="addWorklogAndAutoAdjustRemainingEstimateResponse">
|
1161
|
+
<wsdl:part name="addWorklogAndAutoAdjustRemainingEstimateReturn" type="tns1:RemoteWorklog"></wsdl:part>
|
1162
|
+
</wsdl:message>
|
1163
|
+
<wsdl:message name="deleteIssueRequest">
|
1164
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1165
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1166
|
+
</wsdl:message>
|
1167
|
+
<wsdl:message name="addDefaultActorsToProjectRoleRequest">
|
1168
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1169
|
+
<wsdl:part name="in1" type="impl:ArrayOf_xsd_string"></wsdl:part>
|
1170
|
+
<wsdl:part name="in2" type="tns1:RemoteProjectRole"></wsdl:part>
|
1171
|
+
<wsdl:part name="in3" type="xsd:string"></wsdl:part>
|
1172
|
+
</wsdl:message>
|
1173
|
+
<wsdl:message name="addVersionRequest">
|
1174
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1175
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1176
|
+
<wsdl:part name="in2" type="tns1:RemoteVersion"></wsdl:part>
|
1177
|
+
</wsdl:message>
|
1178
|
+
<wsdl:message name="getAttachmentsFromIssueRequest">
|
1179
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1180
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1181
|
+
</wsdl:message>
|
1182
|
+
<wsdl:message name="deleteUserResponse"></wsdl:message>
|
1183
|
+
<wsdl:message name="getProjectRoleRequest">
|
1184
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1185
|
+
<wsdl:part name="in1" type="xsd:long"></wsdl:part>
|
1186
|
+
</wsdl:message>
|
1187
|
+
<wsdl:message name="removeAllRoleActorsByProjectRequest">
|
1188
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1189
|
+
<wsdl:part name="in1" type="tns1:RemoteProject"></wsdl:part>
|
1190
|
+
</wsdl:message>
|
1191
|
+
<wsdl:message name="hasPermissionToUpdateWorklogResponse">
|
1192
|
+
<wsdl:part name="hasPermissionToUpdateWorklogReturn" type="xsd:boolean"></wsdl:part>
|
1193
|
+
</wsdl:message>
|
1194
|
+
<wsdl:message name="createIssueWithParentWithSecurityLevelRequest">
|
1195
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1196
|
+
<wsdl:part name="in1" type="tns1:RemoteIssue"></wsdl:part>
|
1197
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
1198
|
+
<wsdl:part name="in3" type="xsd:long"></wsdl:part>
|
1199
|
+
</wsdl:message>
|
1200
|
+
<wsdl:message name="createIssueWithParentRequest">
|
1201
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1202
|
+
<wsdl:part name="in1" type="tns1:RemoteIssue"></wsdl:part>
|
1203
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
1204
|
+
</wsdl:message>
|
1205
|
+
<wsdl:message name="createGroupRequest">
|
1206
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1207
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1208
|
+
<wsdl:part name="in2" type="tns1:RemoteUser"></wsdl:part>
|
1209
|
+
</wsdl:message>
|
1210
|
+
<wsdl:message name="editCommentRequest">
|
1211
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1212
|
+
<wsdl:part name="in1" type="tns1:RemoteComment"></wsdl:part>
|
1213
|
+
</wsdl:message>
|
1214
|
+
<wsdl:message name="removeUserFromGroupResponse"></wsdl:message>
|
1215
|
+
<wsdl:message name="hasPermissionToDeleteWorklogResponse">
|
1216
|
+
<wsdl:part name="hasPermissionToDeleteWorklogReturn" type="xsd:boolean"></wsdl:part>
|
1217
|
+
</wsdl:message>
|
1218
|
+
<wsdl:message name="addBase64EncodedAttachmentsToIssueResponse">
|
1219
|
+
<wsdl:part name="addBase64EncodedAttachmentsToIssueReturn" type="xsd:boolean"></wsdl:part>
|
1220
|
+
</wsdl:message>
|
1221
|
+
<wsdl:message name="getIssuesFromTextSearchWithProjectRequest">
|
1222
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1223
|
+
<wsdl:part name="in1" type="impl:ArrayOf_xsd_string"></wsdl:part>
|
1224
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
1225
|
+
<wsdl:part name="in3" type="xsd:int"></wsdl:part>
|
1226
|
+
</wsdl:message>
|
1227
|
+
<wsdl:message name="getNotificationSchemesResponse">
|
1228
|
+
<wsdl:part name="getNotificationSchemesReturn" type="impl:ArrayOf_tns1_RemoteScheme"></wsdl:part>
|
1229
|
+
</wsdl:message>
|
1230
|
+
<wsdl:message name="deleteGroupResponse"></wsdl:message>
|
1231
|
+
<wsdl:message name="getCommentRequest">
|
1232
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1233
|
+
<wsdl:part name="in1" type="xsd:long"></wsdl:part>
|
1234
|
+
</wsdl:message>
|
1235
|
+
<wsdl:message name="getIssuesFromFilterRequest">
|
1236
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1237
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1238
|
+
</wsdl:message>
|
1239
|
+
<wsdl:message name="getProjectsNoSchemesRequest">
|
1240
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1241
|
+
</wsdl:message>
|
1242
|
+
<wsdl:message name="getDefaultRoleActorsResponse">
|
1243
|
+
<wsdl:part name="getDefaultRoleActorsReturn" type="tns1:RemoteRoleActors"></wsdl:part>
|
1244
|
+
</wsdl:message>
|
1245
|
+
<wsdl:message name="updateUserResponse">
|
1246
|
+
<wsdl:part name="updateUserReturn" type="tns1:RemoteUser"></wsdl:part>
|
1247
|
+
</wsdl:message>
|
1248
|
+
<wsdl:message name="getAvailableActionsResponse">
|
1249
|
+
<wsdl:part name="getAvailableActionsReturn" type="impl:ArrayOf_tns1_RemoteNamedObject"></wsdl:part>
|
1250
|
+
</wsdl:message>
|
1251
|
+
<wsdl:message name="setNewProjectAvatarResponse"></wsdl:message>
|
1252
|
+
<wsdl:message name="deleteProjectRoleRequest">
|
1253
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1254
|
+
<wsdl:part name="in1" type="tns1:RemoteProjectRole"></wsdl:part>
|
1255
|
+
<wsdl:part name="in2" type="xsd:boolean"></wsdl:part>
|
1256
|
+
</wsdl:message>
|
1257
|
+
<wsdl:message name="getCommentsRequest">
|
1258
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1259
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1260
|
+
</wsdl:message>
|
1261
|
+
<wsdl:message name="getProjectAvatarRequest">
|
1262
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1263
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1264
|
+
</wsdl:message>
|
1265
|
+
<wsdl:message name="addDefaultActorsToProjectRoleResponse"></wsdl:message>
|
1266
|
+
<wsdl:message name="getIssuesFromTextSearchResponse">
|
1267
|
+
<wsdl:part name="getIssuesFromTextSearchReturn" type="impl:ArrayOf_tns1_RemoteIssue"></wsdl:part>
|
1268
|
+
</wsdl:message>
|
1269
|
+
<wsdl:message name="removeActorsFromProjectRoleResponse"></wsdl:message>
|
1270
|
+
<wsdl:message name="getIssuesFromFilterWithLimitResponse">
|
1271
|
+
<wsdl:part name="getIssuesFromFilterWithLimitReturn" type="impl:ArrayOf_tns1_RemoteIssue"></wsdl:part>
|
1272
|
+
</wsdl:message>
|
1273
|
+
<wsdl:message name="updateIssueRequest">
|
1274
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1275
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1276
|
+
<wsdl:part name="in2" type="impl:ArrayOf_tns1_RemoteFieldValue"></wsdl:part>
|
1277
|
+
</wsdl:message>
|
1278
|
+
<wsdl:message name="getProjectRolesResponse">
|
1279
|
+
<wsdl:part name="getProjectRolesReturn" type="impl:ArrayOf_tns1_RemoteProjectRole"></wsdl:part>
|
1280
|
+
</wsdl:message>
|
1281
|
+
<wsdl:message name="getSavedFiltersRequest">
|
1282
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1283
|
+
</wsdl:message>
|
1284
|
+
<wsdl:message name="createPermissionSchemeRequest">
|
1285
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1286
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1287
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
1288
|
+
</wsdl:message>
|
1289
|
+
<wsdl:message name="addUserToGroupRequest">
|
1290
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1291
|
+
<wsdl:part name="in1" type="tns1:RemoteGroup"></wsdl:part>
|
1292
|
+
<wsdl:part name="in2" type="tns1:RemoteUser"></wsdl:part>
|
1293
|
+
</wsdl:message>
|
1294
|
+
<wsdl:message name="getUserResponse">
|
1295
|
+
<wsdl:part name="getUserReturn" type="tns1:RemoteUser"></wsdl:part>
|
1296
|
+
</wsdl:message>
|
1297
|
+
<wsdl:message name="getWorklogsResponse">
|
1298
|
+
<wsdl:part name="getWorklogsReturn" type="impl:ArrayOf_tns1_RemoteWorklog"></wsdl:part>
|
1299
|
+
</wsdl:message>
|
1300
|
+
<wsdl:message name="getIssueCountForFilterRequest">
|
1301
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1302
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1303
|
+
</wsdl:message>
|
1304
|
+
<wsdl:message name="removeAllRoleActorsByProjectResponse"></wsdl:message>
|
1305
|
+
<wsdl:message name="deleteWorklogAndRetainRemainingEstimateResponse"></wsdl:message>
|
1306
|
+
<wsdl:message name="getProjectRoleActorsResponse">
|
1307
|
+
<wsdl:part name="getProjectRoleActorsReturn" type="tns1:RemoteProjectRoleActors"></wsdl:part>
|
1308
|
+
</wsdl:message>
|
1309
|
+
<wsdl:message name="getProjectWithSchemesByIdResponse">
|
1310
|
+
<wsdl:part name="getProjectWithSchemesByIdReturn" type="tns1:RemoteProject"></wsdl:part>
|
1311
|
+
</wsdl:message>
|
1312
|
+
<wsdl:message name="getNotificationSchemesRequest">
|
1313
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1314
|
+
</wsdl:message>
|
1315
|
+
<wsdl:message name="createIssueWithParentResponse">
|
1316
|
+
<wsdl:part name="createIssueWithParentReturn" type="tns1:RemoteIssue"></wsdl:part>
|
1317
|
+
</wsdl:message>
|
1318
|
+
<wsdl:message name="addPermissionToRequest">
|
1319
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1320
|
+
<wsdl:part name="in1" type="tns1:RemotePermissionScheme"></wsdl:part>
|
1321
|
+
<wsdl:part name="in2" type="tns1:RemotePermission"></wsdl:part>
|
1322
|
+
<wsdl:part name="in3" type="tns1:RemoteEntity"></wsdl:part>
|
1323
|
+
</wsdl:message>
|
1324
|
+
<wsdl:message name="createIssueWithSecurityLevelRequest">
|
1325
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1326
|
+
<wsdl:part name="in1" type="tns1:RemoteIssue"></wsdl:part>
|
1327
|
+
<wsdl:part name="in2" type="xsd:long"></wsdl:part>
|
1328
|
+
</wsdl:message>
|
1329
|
+
<wsdl:message name="getVersionsRequest">
|
1330
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1331
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1332
|
+
</wsdl:message>
|
1333
|
+
<wsdl:message name="deleteGroupRequest">
|
1334
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1335
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1336
|
+
<wsdl:part name="in2" type="xsd:string"></wsdl:part>
|
1337
|
+
</wsdl:message>
|
1338
|
+
<wsdl:message name="getIssuesFromJqlSearchRequest">
|
1339
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1340
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1341
|
+
<wsdl:part name="in2" type="xsd:int"></wsdl:part>
|
1342
|
+
</wsdl:message>
|
1343
|
+
<wsdl:message name="updateProjectRoleResponse"></wsdl:message>
|
1344
|
+
<wsdl:message name="getProjectRoleActorsRequest">
|
1345
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1346
|
+
<wsdl:part name="in1" type="tns1:RemoteProjectRole"></wsdl:part>
|
1347
|
+
<wsdl:part name="in2" type="tns1:RemoteProject"></wsdl:part>
|
1348
|
+
</wsdl:message>
|
1349
|
+
<wsdl:message name="createIssueResponse">
|
1350
|
+
<wsdl:part name="createIssueReturn" type="tns1:RemoteIssue"></wsdl:part>
|
1351
|
+
</wsdl:message>
|
1352
|
+
<wsdl:message name="addActorsToProjectRoleRequest">
|
1353
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1354
|
+
<wsdl:part name="in1" type="impl:ArrayOf_xsd_string"></wsdl:part>
|
1355
|
+
<wsdl:part name="in2" type="tns1:RemoteProjectRole"></wsdl:part>
|
1356
|
+
<wsdl:part name="in3" type="tns1:RemoteProject"></wsdl:part>
|
1357
|
+
<wsdl:part name="in4" type="xsd:string"></wsdl:part>
|
1358
|
+
</wsdl:message>
|
1359
|
+
<wsdl:message name="setProjectAvatarResponse"></wsdl:message>
|
1360
|
+
<wsdl:message name="getSecuritySchemesResponse">
|
1361
|
+
<wsdl:part name="getSecuritySchemesReturn" type="impl:ArrayOf_tns1_RemoteScheme"></wsdl:part>
|
1362
|
+
</wsdl:message>
|
1363
|
+
<wsdl:message name="getIssueByIdRequest">
|
1364
|
+
<wsdl:part name="in0" type="xsd:string"></wsdl:part>
|
1365
|
+
<wsdl:part name="in1" type="xsd:string"></wsdl:part>
|
1366
|
+
</wsdl:message>
|
1367
|
+
<wsdl:portType name="JiraSoapService">
|
1368
|
+
<wsdl:operation name="getComment" parameterOrder="in0 in1">
|
1369
|
+
<wsdl:input message="impl:getCommentRequest" name="getCommentRequest"></wsdl:input>
|
1370
|
+
<wsdl:output message="impl:getCommentResponse" name="getCommentResponse"></wsdl:output>
|
1371
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1372
|
+
</wsdl:operation>
|
1373
|
+
<wsdl:operation name="getConfiguration" parameterOrder="in0">
|
1374
|
+
<wsdl:input message="impl:getConfigurationRequest" name="getConfigurationRequest"></wsdl:input>
|
1375
|
+
<wsdl:output message="impl:getConfigurationResponse" name="getConfigurationResponse"></wsdl:output>
|
1376
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1377
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1378
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1379
|
+
</wsdl:operation>
|
1380
|
+
<wsdl:operation name="createGroup" parameterOrder="in0 in1 in2">
|
1381
|
+
<wsdl:input message="impl:createGroupRequest" name="createGroupRequest"></wsdl:input>
|
1382
|
+
<wsdl:output message="impl:createGroupResponse" name="createGroupResponse"></wsdl:output>
|
1383
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1384
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1385
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1386
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1387
|
+
</wsdl:operation>
|
1388
|
+
<wsdl:operation name="getServerInfo" parameterOrder="in0">
|
1389
|
+
<wsdl:input message="impl:getServerInfoRequest" name="getServerInfoRequest"></wsdl:input>
|
1390
|
+
<wsdl:output message="impl:getServerInfoResponse" name="getServerInfoResponse"></wsdl:output>
|
1391
|
+
</wsdl:operation>
|
1392
|
+
<wsdl:operation name="getGroup" parameterOrder="in0 in1">
|
1393
|
+
<wsdl:input message="impl:getGroupRequest" name="getGroupRequest"></wsdl:input>
|
1394
|
+
<wsdl:output message="impl:getGroupResponse" name="getGroupResponse"></wsdl:output>
|
1395
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1396
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1397
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1398
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1399
|
+
</wsdl:operation>
|
1400
|
+
<wsdl:operation name="createUser" parameterOrder="in0 in1 in2 in3 in4">
|
1401
|
+
<wsdl:input message="impl:createUserRequest" name="createUserRequest"></wsdl:input>
|
1402
|
+
<wsdl:output message="impl:createUserResponse" name="createUserResponse"></wsdl:output>
|
1403
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1404
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1405
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1406
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1407
|
+
</wsdl:operation>
|
1408
|
+
<wsdl:operation name="addComment" parameterOrder="in0 in1 in2">
|
1409
|
+
<wsdl:input message="impl:addCommentRequest" name="addCommentRequest"></wsdl:input>
|
1410
|
+
<wsdl:output message="impl:addCommentResponse" name="addCommentResponse"></wsdl:output>
|
1411
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1412
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1413
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1414
|
+
</wsdl:operation>
|
1415
|
+
<wsdl:operation name="createIssue" parameterOrder="in0 in1">
|
1416
|
+
<wsdl:input message="impl:createIssueRequest" name="createIssueRequest"></wsdl:input>
|
1417
|
+
<wsdl:output message="impl:createIssueResponse" name="createIssueResponse"></wsdl:output>
|
1418
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1419
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1420
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1421
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1422
|
+
</wsdl:operation>
|
1423
|
+
<wsdl:operation name="getComponents" parameterOrder="in0 in1">
|
1424
|
+
<wsdl:input message="impl:getComponentsRequest" name="getComponentsRequest"></wsdl:input>
|
1425
|
+
<wsdl:output message="impl:getComponentsResponse" name="getComponentsResponse"></wsdl:output>
|
1426
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1427
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1428
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1429
|
+
</wsdl:operation>
|
1430
|
+
<wsdl:operation name="getUser" parameterOrder="in0 in1">
|
1431
|
+
<wsdl:input message="impl:getUserRequest" name="getUserRequest"></wsdl:input>
|
1432
|
+
<wsdl:output message="impl:getUserResponse" name="getUserResponse"></wsdl:output>
|
1433
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1434
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1435
|
+
</wsdl:operation>
|
1436
|
+
<wsdl:operation name="updateUser" parameterOrder="in0 in1">
|
1437
|
+
<wsdl:input message="impl:updateUserRequest" name="updateUserRequest"></wsdl:input>
|
1438
|
+
<wsdl:output message="impl:updateUserResponse" name="updateUserResponse"></wsdl:output>
|
1439
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1440
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1441
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1442
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1443
|
+
</wsdl:operation>
|
1444
|
+
<wsdl:operation name="updateGroup" parameterOrder="in0 in1">
|
1445
|
+
<wsdl:input message="impl:updateGroupRequest" name="updateGroupRequest"></wsdl:input>
|
1446
|
+
<wsdl:output message="impl:updateGroupResponse" name="updateGroupResponse"></wsdl:output>
|
1447
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1448
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1449
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1450
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1451
|
+
</wsdl:operation>
|
1452
|
+
<wsdl:operation name="addUserToGroup" parameterOrder="in0 in1 in2">
|
1453
|
+
<wsdl:input message="impl:addUserToGroupRequest" name="addUserToGroupRequest"></wsdl:input>
|
1454
|
+
<wsdl:output message="impl:addUserToGroupResponse" name="addUserToGroupResponse"></wsdl:output>
|
1455
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1456
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1457
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1458
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1459
|
+
</wsdl:operation>
|
1460
|
+
<wsdl:operation name="removeUserFromGroup" parameterOrder="in0 in1 in2">
|
1461
|
+
<wsdl:input message="impl:removeUserFromGroupRequest" name="removeUserFromGroupRequest"></wsdl:input>
|
1462
|
+
<wsdl:output message="impl:removeUserFromGroupResponse" name="removeUserFromGroupResponse"></wsdl:output>
|
1463
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1464
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1465
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1466
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1467
|
+
</wsdl:operation>
|
1468
|
+
<wsdl:operation name="getIssue" parameterOrder="in0 in1">
|
1469
|
+
<wsdl:input message="impl:getIssueRequest" name="getIssueRequest"></wsdl:input>
|
1470
|
+
<wsdl:output message="impl:getIssueResponse" name="getIssueResponse"></wsdl:output>
|
1471
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1472
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1473
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1474
|
+
</wsdl:operation>
|
1475
|
+
<wsdl:operation name="updateIssue" parameterOrder="in0 in1 in2">
|
1476
|
+
<wsdl:input message="impl:updateIssueRequest" name="updateIssueRequest"></wsdl:input>
|
1477
|
+
<wsdl:output message="impl:updateIssueResponse" name="updateIssueResponse"></wsdl:output>
|
1478
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1479
|
+
</wsdl:operation>
|
1480
|
+
<wsdl:operation name="deleteIssue" parameterOrder="in0 in1">
|
1481
|
+
<wsdl:input message="impl:deleteIssueRequest" name="deleteIssueRequest"></wsdl:input>
|
1482
|
+
<wsdl:output message="impl:deleteIssueResponse" name="deleteIssueResponse"></wsdl:output>
|
1483
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1484
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1485
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1486
|
+
</wsdl:operation>
|
1487
|
+
<wsdl:operation name="getAvailableActions" parameterOrder="in0 in1">
|
1488
|
+
<wsdl:input message="impl:getAvailableActionsRequest" name="getAvailableActionsRequest"></wsdl:input>
|
1489
|
+
<wsdl:output message="impl:getAvailableActionsResponse" name="getAvailableActionsResponse"></wsdl:output>
|
1490
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1491
|
+
</wsdl:operation>
|
1492
|
+
<wsdl:operation name="getSecurityLevel" parameterOrder="in0 in1">
|
1493
|
+
<wsdl:input message="impl:getSecurityLevelRequest" name="getSecurityLevelRequest"></wsdl:input>
|
1494
|
+
<wsdl:output message="impl:getSecurityLevelResponse" name="getSecurityLevelResponse"></wsdl:output>
|
1495
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1496
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1497
|
+
</wsdl:operation>
|
1498
|
+
<wsdl:operation name="createProject" parameterOrder="in0 in1 in2 in3 in4 in5 in6 in7 in8">
|
1499
|
+
<wsdl:input message="impl:createProjectRequest" name="createProjectRequest"></wsdl:input>
|
1500
|
+
<wsdl:output message="impl:createProjectResponse" name="createProjectResponse"></wsdl:output>
|
1501
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1502
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1503
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1504
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1505
|
+
</wsdl:operation>
|
1506
|
+
<wsdl:operation name="updateProject" parameterOrder="in0 in1">
|
1507
|
+
<wsdl:input message="impl:updateProjectRequest" name="updateProjectRequest"></wsdl:input>
|
1508
|
+
<wsdl:output message="impl:updateProjectResponse" name="updateProjectResponse"></wsdl:output>
|
1509
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1510
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1511
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1512
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1513
|
+
</wsdl:operation>
|
1514
|
+
<wsdl:operation name="getProjectByKey" parameterOrder="in0 in1">
|
1515
|
+
<wsdl:input message="impl:getProjectByKeyRequest" name="getProjectByKeyRequest"></wsdl:input>
|
1516
|
+
<wsdl:output message="impl:getProjectByKeyResponse" name="getProjectByKeyResponse"></wsdl:output>
|
1517
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1518
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1519
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1520
|
+
</wsdl:operation>
|
1521
|
+
<wsdl:operation name="removeAllRoleActorsByProject" parameterOrder="in0 in1">
|
1522
|
+
<wsdl:input message="impl:removeAllRoleActorsByProjectRequest" name="removeAllRoleActorsByProjectRequest"></wsdl:input>
|
1523
|
+
<wsdl:output message="impl:removeAllRoleActorsByProjectResponse" name="removeAllRoleActorsByProjectResponse"></wsdl:output>
|
1524
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1525
|
+
</wsdl:operation>
|
1526
|
+
<wsdl:operation name="getPriorities" parameterOrder="in0">
|
1527
|
+
<wsdl:input message="impl:getPrioritiesRequest" name="getPrioritiesRequest"></wsdl:input>
|
1528
|
+
<wsdl:output message="impl:getPrioritiesResponse" name="getPrioritiesResponse"></wsdl:output>
|
1529
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1530
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1531
|
+
</wsdl:operation>
|
1532
|
+
<wsdl:operation name="getResolutions" parameterOrder="in0">
|
1533
|
+
<wsdl:input message="impl:getResolutionsRequest" name="getResolutionsRequest"></wsdl:input>
|
1534
|
+
<wsdl:output message="impl:getResolutionsResponse" name="getResolutionsResponse"></wsdl:output>
|
1535
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1536
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1537
|
+
</wsdl:operation>
|
1538
|
+
<wsdl:operation name="getIssueTypes" parameterOrder="in0">
|
1539
|
+
<wsdl:input message="impl:getIssueTypesRequest" name="getIssueTypesRequest"></wsdl:input>
|
1540
|
+
<wsdl:output message="impl:getIssueTypesResponse" name="getIssueTypesResponse"></wsdl:output>
|
1541
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1542
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1543
|
+
</wsdl:operation>
|
1544
|
+
<wsdl:operation name="getSubTaskIssueTypes" parameterOrder="in0">
|
1545
|
+
<wsdl:input message="impl:getSubTaskIssueTypesRequest" name="getSubTaskIssueTypesRequest"></wsdl:input>
|
1546
|
+
<wsdl:output message="impl:getSubTaskIssueTypesResponse" name="getSubTaskIssueTypesResponse"></wsdl:output>
|
1547
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1548
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1549
|
+
</wsdl:operation>
|
1550
|
+
<wsdl:operation name="getStatuses" parameterOrder="in0">
|
1551
|
+
<wsdl:input message="impl:getStatusesRequest" name="getStatusesRequest"></wsdl:input>
|
1552
|
+
<wsdl:output message="impl:getStatusesResponse" name="getStatusesResponse"></wsdl:output>
|
1553
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1554
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1555
|
+
</wsdl:operation>
|
1556
|
+
<wsdl:operation name="getIssueTypesForProject" parameterOrder="in0 in1">
|
1557
|
+
<wsdl:input message="impl:getIssueTypesForProjectRequest" name="getIssueTypesForProjectRequest"></wsdl:input>
|
1558
|
+
<wsdl:output message="impl:getIssueTypesForProjectResponse" name="getIssueTypesForProjectResponse"></wsdl:output>
|
1559
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1560
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1561
|
+
</wsdl:operation>
|
1562
|
+
<wsdl:operation name="getProjectRoles" parameterOrder="in0">
|
1563
|
+
<wsdl:input message="impl:getProjectRolesRequest" name="getProjectRolesRequest"></wsdl:input>
|
1564
|
+
<wsdl:output message="impl:getProjectRolesResponse" name="getProjectRolesResponse"></wsdl:output>
|
1565
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1566
|
+
</wsdl:operation>
|
1567
|
+
<wsdl:operation name="getProjectRole" parameterOrder="in0 in1">
|
1568
|
+
<wsdl:input message="impl:getProjectRoleRequest" name="getProjectRoleRequest"></wsdl:input>
|
1569
|
+
<wsdl:output message="impl:getProjectRoleResponse" name="getProjectRoleResponse"></wsdl:output>
|
1570
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1571
|
+
</wsdl:operation>
|
1572
|
+
<wsdl:operation name="getProjectRoleActors" parameterOrder="in0 in1 in2">
|
1573
|
+
<wsdl:input message="impl:getProjectRoleActorsRequest" name="getProjectRoleActorsRequest"></wsdl:input>
|
1574
|
+
<wsdl:output message="impl:getProjectRoleActorsResponse" name="getProjectRoleActorsResponse"></wsdl:output>
|
1575
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1576
|
+
</wsdl:operation>
|
1577
|
+
<wsdl:operation name="getDefaultRoleActors" parameterOrder="in0 in1">
|
1578
|
+
<wsdl:input message="impl:getDefaultRoleActorsRequest" name="getDefaultRoleActorsRequest"></wsdl:input>
|
1579
|
+
<wsdl:output message="impl:getDefaultRoleActorsResponse" name="getDefaultRoleActorsResponse"></wsdl:output>
|
1580
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1581
|
+
</wsdl:operation>
|
1582
|
+
<wsdl:operation name="removeAllRoleActorsByNameAndType" parameterOrder="in0 in1 in2">
|
1583
|
+
<wsdl:input message="impl:removeAllRoleActorsByNameAndTypeRequest" name="removeAllRoleActorsByNameAndTypeRequest"></wsdl:input>
|
1584
|
+
<wsdl:output message="impl:removeAllRoleActorsByNameAndTypeResponse" name="removeAllRoleActorsByNameAndTypeResponse"></wsdl:output>
|
1585
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1586
|
+
</wsdl:operation>
|
1587
|
+
<wsdl:operation name="deleteProjectRole" parameterOrder="in0 in1 in2">
|
1588
|
+
<wsdl:input message="impl:deleteProjectRoleRequest" name="deleteProjectRoleRequest"></wsdl:input>
|
1589
|
+
<wsdl:output message="impl:deleteProjectRoleResponse" name="deleteProjectRoleResponse"></wsdl:output>
|
1590
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1591
|
+
</wsdl:operation>
|
1592
|
+
<wsdl:operation name="updateProjectRole" parameterOrder="in0 in1">
|
1593
|
+
<wsdl:input message="impl:updateProjectRoleRequest" name="updateProjectRoleRequest"></wsdl:input>
|
1594
|
+
<wsdl:output message="impl:updateProjectRoleResponse" name="updateProjectRoleResponse"></wsdl:output>
|
1595
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1596
|
+
</wsdl:operation>
|
1597
|
+
<wsdl:operation name="createProjectRole" parameterOrder="in0 in1">
|
1598
|
+
<wsdl:input message="impl:createProjectRoleRequest" name="createProjectRoleRequest"></wsdl:input>
|
1599
|
+
<wsdl:output message="impl:createProjectRoleResponse" name="createProjectRoleResponse"></wsdl:output>
|
1600
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1601
|
+
</wsdl:operation>
|
1602
|
+
<wsdl:operation name="isProjectRoleNameUnique" parameterOrder="in0 in1">
|
1603
|
+
<wsdl:input message="impl:isProjectRoleNameUniqueRequest" name="isProjectRoleNameUniqueRequest"></wsdl:input>
|
1604
|
+
<wsdl:output message="impl:isProjectRoleNameUniqueResponse" name="isProjectRoleNameUniqueResponse"></wsdl:output>
|
1605
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1606
|
+
</wsdl:operation>
|
1607
|
+
<wsdl:operation name="addActorsToProjectRole" parameterOrder="in0 in1 in2 in3 in4">
|
1608
|
+
<wsdl:input message="impl:addActorsToProjectRoleRequest" name="addActorsToProjectRoleRequest"></wsdl:input>
|
1609
|
+
<wsdl:output message="impl:addActorsToProjectRoleResponse" name="addActorsToProjectRoleResponse"></wsdl:output>
|
1610
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1611
|
+
</wsdl:operation>
|
1612
|
+
<wsdl:operation name="removeActorsFromProjectRole" parameterOrder="in0 in1 in2 in3 in4">
|
1613
|
+
<wsdl:input message="impl:removeActorsFromProjectRoleRequest" name="removeActorsFromProjectRoleRequest"></wsdl:input>
|
1614
|
+
<wsdl:output message="impl:removeActorsFromProjectRoleResponse" name="removeActorsFromProjectRoleResponse"></wsdl:output>
|
1615
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1616
|
+
</wsdl:operation>
|
1617
|
+
<wsdl:operation name="addDefaultActorsToProjectRole" parameterOrder="in0 in1 in2 in3">
|
1618
|
+
<wsdl:input message="impl:addDefaultActorsToProjectRoleRequest" name="addDefaultActorsToProjectRoleRequest"></wsdl:input>
|
1619
|
+
<wsdl:output message="impl:addDefaultActorsToProjectRoleResponse" name="addDefaultActorsToProjectRoleResponse"></wsdl:output>
|
1620
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1621
|
+
</wsdl:operation>
|
1622
|
+
<wsdl:operation name="removeDefaultActorsFromProjectRole" parameterOrder="in0 in1 in2 in3">
|
1623
|
+
<wsdl:input message="impl:removeDefaultActorsFromProjectRoleRequest" name="removeDefaultActorsFromProjectRoleRequest"></wsdl:input>
|
1624
|
+
<wsdl:output message="impl:removeDefaultActorsFromProjectRoleResponse" name="removeDefaultActorsFromProjectRoleResponse"></wsdl:output>
|
1625
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1626
|
+
</wsdl:operation>
|
1627
|
+
<wsdl:operation name="getAssociatedNotificationSchemes" parameterOrder="in0 in1">
|
1628
|
+
<wsdl:input message="impl:getAssociatedNotificationSchemesRequest" name="getAssociatedNotificationSchemesRequest"></wsdl:input>
|
1629
|
+
<wsdl:output message="impl:getAssociatedNotificationSchemesResponse" name="getAssociatedNotificationSchemesResponse"></wsdl:output>
|
1630
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1631
|
+
</wsdl:operation>
|
1632
|
+
<wsdl:operation name="getAssociatedPermissionSchemes" parameterOrder="in0 in1">
|
1633
|
+
<wsdl:input message="impl:getAssociatedPermissionSchemesRequest" name="getAssociatedPermissionSchemesRequest"></wsdl:input>
|
1634
|
+
<wsdl:output message="impl:getAssociatedPermissionSchemesResponse" name="getAssociatedPermissionSchemesResponse"></wsdl:output>
|
1635
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1636
|
+
</wsdl:operation>
|
1637
|
+
<wsdl:operation name="deleteProject" parameterOrder="in0 in1">
|
1638
|
+
<wsdl:input message="impl:deleteProjectRequest" name="deleteProjectRequest"></wsdl:input>
|
1639
|
+
<wsdl:output message="impl:deleteProjectResponse" name="deleteProjectResponse"></wsdl:output>
|
1640
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1641
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1642
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1643
|
+
</wsdl:operation>
|
1644
|
+
<wsdl:operation name="getProjectById" parameterOrder="in0 in1">
|
1645
|
+
<wsdl:input message="impl:getProjectByIdRequest" name="getProjectByIdRequest"></wsdl:input>
|
1646
|
+
<wsdl:output message="impl:getProjectByIdResponse" name="getProjectByIdResponse"></wsdl:output>
|
1647
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1648
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1649
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1650
|
+
</wsdl:operation>
|
1651
|
+
<wsdl:operation name="getVersions" parameterOrder="in0 in1">
|
1652
|
+
<wsdl:input message="impl:getVersionsRequest" name="getVersionsRequest"></wsdl:input>
|
1653
|
+
<wsdl:output message="impl:getVersionsResponse" name="getVersionsResponse"></wsdl:output>
|
1654
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1655
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1656
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1657
|
+
</wsdl:operation>
|
1658
|
+
<wsdl:operation name="getComments" parameterOrder="in0 in1">
|
1659
|
+
<wsdl:input message="impl:getCommentsRequest" name="getCommentsRequest"></wsdl:input>
|
1660
|
+
<wsdl:output message="impl:getCommentsResponse" name="getCommentsResponse"></wsdl:output>
|
1661
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1662
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1663
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1664
|
+
</wsdl:operation>
|
1665
|
+
<wsdl:operation name="getFavouriteFilters" parameterOrder="in0">
|
1666
|
+
<wsdl:input message="impl:getFavouriteFiltersRequest" name="getFavouriteFiltersRequest"></wsdl:input>
|
1667
|
+
<wsdl:output message="impl:getFavouriteFiltersResponse" name="getFavouriteFiltersResponse"></wsdl:output>
|
1668
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1669
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1670
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1671
|
+
</wsdl:operation>
|
1672
|
+
<wsdl:operation name="releaseVersion" parameterOrder="in0 in1 in2">
|
1673
|
+
<wsdl:input message="impl:releaseVersionRequest" name="releaseVersionRequest"></wsdl:input>
|
1674
|
+
<wsdl:output message="impl:releaseVersionResponse" name="releaseVersionResponse"></wsdl:output>
|
1675
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1676
|
+
</wsdl:operation>
|
1677
|
+
<wsdl:operation name="archiveVersion" parameterOrder="in0 in1 in2 in3">
|
1678
|
+
<wsdl:input message="impl:archiveVersionRequest" name="archiveVersionRequest"></wsdl:input>
|
1679
|
+
<wsdl:output message="impl:archiveVersionResponse" name="archiveVersionResponse"></wsdl:output>
|
1680
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1681
|
+
</wsdl:operation>
|
1682
|
+
<wsdl:operation name="getFieldsForCreate" parameterOrder="in0 in1 in2">
|
1683
|
+
<wsdl:input message="impl:getFieldsForCreateRequest" name="getFieldsForCreateRequest"></wsdl:input>
|
1684
|
+
<wsdl:output message="impl:getFieldsForCreateResponse" name="getFieldsForCreateResponse"></wsdl:output>
|
1685
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1686
|
+
</wsdl:operation>
|
1687
|
+
<wsdl:operation name="getFieldsForEdit" parameterOrder="in0 in1">
|
1688
|
+
<wsdl:input message="impl:getFieldsForEditRequest" name="getFieldsForEditRequest"></wsdl:input>
|
1689
|
+
<wsdl:output message="impl:getFieldsForEditResponse" name="getFieldsForEditResponse"></wsdl:output>
|
1690
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1691
|
+
</wsdl:operation>
|
1692
|
+
<wsdl:operation name="getSubTaskIssueTypesForProject" parameterOrder="in0 in1">
|
1693
|
+
<wsdl:input message="impl:getSubTaskIssueTypesForProjectRequest" name="getSubTaskIssueTypesForProjectRequest"></wsdl:input>
|
1694
|
+
<wsdl:output message="impl:getSubTaskIssueTypesForProjectResponse" name="getSubTaskIssueTypesForProjectResponse"></wsdl:output>
|
1695
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1696
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1697
|
+
</wsdl:operation>
|
1698
|
+
<wsdl:operation name="getCustomFields" parameterOrder="in0">
|
1699
|
+
<wsdl:input message="impl:getCustomFieldsRequest" name="getCustomFieldsRequest"></wsdl:input>
|
1700
|
+
<wsdl:output message="impl:getCustomFieldsResponse" name="getCustomFieldsResponse"></wsdl:output>
|
1701
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1702
|
+
</wsdl:operation>
|
1703
|
+
<wsdl:operation name="logout" parameterOrder="in0">
|
1704
|
+
<wsdl:input message="impl:logoutRequest" name="logoutRequest"></wsdl:input>
|
1705
|
+
<wsdl:output message="impl:logoutResponse" name="logoutResponse"></wsdl:output>
|
1706
|
+
</wsdl:operation>
|
1707
|
+
<wsdl:operation name="editComment" parameterOrder="in0 in1">
|
1708
|
+
<wsdl:input message="impl:editCommentRequest" name="editCommentRequest"></wsdl:input>
|
1709
|
+
<wsdl:output message="impl:editCommentResponse" name="editCommentResponse"></wsdl:output>
|
1710
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1711
|
+
</wsdl:operation>
|
1712
|
+
<wsdl:operation name="login" parameterOrder="in0 in1">
|
1713
|
+
<wsdl:input message="impl:loginRequest" name="loginRequest"></wsdl:input>
|
1714
|
+
<wsdl:output message="impl:loginResponse" name="loginResponse"></wsdl:output>
|
1715
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1716
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1717
|
+
</wsdl:operation>
|
1718
|
+
<wsdl:operation name="getProjectWithSchemesById" parameterOrder="in0 in1">
|
1719
|
+
<wsdl:input message="impl:getProjectWithSchemesByIdRequest" name="getProjectWithSchemesByIdRequest"></wsdl:input>
|
1720
|
+
<wsdl:output message="impl:getProjectWithSchemesByIdResponse" name="getProjectWithSchemesByIdResponse"></wsdl:output>
|
1721
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1722
|
+
</wsdl:operation>
|
1723
|
+
<wsdl:operation name="getSecurityLevels" parameterOrder="in0 in1">
|
1724
|
+
<wsdl:input message="impl:getSecurityLevelsRequest" name="getSecurityLevelsRequest"></wsdl:input>
|
1725
|
+
<wsdl:output message="impl:getSecurityLevelsResponse" name="getSecurityLevelsResponse"></wsdl:output>
|
1726
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1727
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1728
|
+
</wsdl:operation>
|
1729
|
+
<wsdl:operation name="getProjectAvatars" parameterOrder="in0 in1 in2">
|
1730
|
+
<wsdl:input message="impl:getProjectAvatarsRequest" name="getProjectAvatarsRequest"></wsdl:input>
|
1731
|
+
<wsdl:output message="impl:getProjectAvatarsResponse" name="getProjectAvatarsResponse"></wsdl:output>
|
1732
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1733
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1734
|
+
</wsdl:operation>
|
1735
|
+
<wsdl:operation name="setProjectAvatar" parameterOrder="in0 in1 in2">
|
1736
|
+
<wsdl:input message="impl:setProjectAvatarRequest" name="setProjectAvatarRequest"></wsdl:input>
|
1737
|
+
<wsdl:output message="impl:setProjectAvatarResponse" name="setProjectAvatarResponse"></wsdl:output>
|
1738
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1739
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1740
|
+
</wsdl:operation>
|
1741
|
+
<wsdl:operation name="getProjectAvatar" parameterOrder="in0 in1">
|
1742
|
+
<wsdl:input message="impl:getProjectAvatarRequest" name="getProjectAvatarRequest"></wsdl:input>
|
1743
|
+
<wsdl:output message="impl:getProjectAvatarResponse" name="getProjectAvatarResponse"></wsdl:output>
|
1744
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1745
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1746
|
+
</wsdl:operation>
|
1747
|
+
<wsdl:operation name="deleteProjectAvatar" parameterOrder="in0 in1">
|
1748
|
+
<wsdl:input message="impl:deleteProjectAvatarRequest" name="deleteProjectAvatarRequest"></wsdl:input>
|
1749
|
+
<wsdl:output message="impl:deleteProjectAvatarResponse" name="deleteProjectAvatarResponse"></wsdl:output>
|
1750
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1751
|
+
</wsdl:operation>
|
1752
|
+
<wsdl:operation name="getNotificationSchemes" parameterOrder="in0">
|
1753
|
+
<wsdl:input message="impl:getNotificationSchemesRequest" name="getNotificationSchemesRequest"></wsdl:input>
|
1754
|
+
<wsdl:output message="impl:getNotificationSchemesResponse" name="getNotificationSchemesResponse"></wsdl:output>
|
1755
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1756
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1757
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1758
|
+
</wsdl:operation>
|
1759
|
+
<wsdl:operation name="getPermissionSchemes" parameterOrder="in0">
|
1760
|
+
<wsdl:input message="impl:getPermissionSchemesRequest" name="getPermissionSchemesRequest"></wsdl:input>
|
1761
|
+
<wsdl:output message="impl:getPermissionSchemesResponse" name="getPermissionSchemesResponse"></wsdl:output>
|
1762
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1763
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1764
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1765
|
+
</wsdl:operation>
|
1766
|
+
<wsdl:operation name="createPermissionScheme" parameterOrder="in0 in1 in2">
|
1767
|
+
<wsdl:input message="impl:createPermissionSchemeRequest" name="createPermissionSchemeRequest"></wsdl:input>
|
1768
|
+
<wsdl:output message="impl:createPermissionSchemeResponse" name="createPermissionSchemeResponse"></wsdl:output>
|
1769
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1770
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1771
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1772
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1773
|
+
</wsdl:operation>
|
1774
|
+
<wsdl:operation name="deletePermissionScheme" parameterOrder="in0 in1">
|
1775
|
+
<wsdl:input message="impl:deletePermissionSchemeRequest" name="deletePermissionSchemeRequest"></wsdl:input>
|
1776
|
+
<wsdl:output message="impl:deletePermissionSchemeResponse" name="deletePermissionSchemeResponse"></wsdl:output>
|
1777
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1778
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1779
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1780
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1781
|
+
</wsdl:operation>
|
1782
|
+
<wsdl:operation name="addPermissionTo" parameterOrder="in0 in1 in2 in3">
|
1783
|
+
<wsdl:input message="impl:addPermissionToRequest" name="addPermissionToRequest"></wsdl:input>
|
1784
|
+
<wsdl:output message="impl:addPermissionToResponse" name="addPermissionToResponse"></wsdl:output>
|
1785
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1786
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1787
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1788
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1789
|
+
</wsdl:operation>
|
1790
|
+
<wsdl:operation name="deletePermissionFrom" parameterOrder="in0 in1 in2 in3">
|
1791
|
+
<wsdl:input message="impl:deletePermissionFromRequest" name="deletePermissionFromRequest"></wsdl:input>
|
1792
|
+
<wsdl:output message="impl:deletePermissionFromResponse" name="deletePermissionFromResponse"></wsdl:output>
|
1793
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1794
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1795
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1796
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1797
|
+
</wsdl:operation>
|
1798
|
+
<wsdl:operation name="getAllPermissions" parameterOrder="in0">
|
1799
|
+
<wsdl:input message="impl:getAllPermissionsRequest" name="getAllPermissionsRequest"></wsdl:input>
|
1800
|
+
<wsdl:output message="impl:getAllPermissionsResponse" name="getAllPermissionsResponse"></wsdl:output>
|
1801
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1802
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1803
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1804
|
+
</wsdl:operation>
|
1805
|
+
<wsdl:operation name="createIssueWithSecurityLevel" parameterOrder="in0 in1 in2">
|
1806
|
+
<wsdl:input message="impl:createIssueWithSecurityLevelRequest" name="createIssueWithSecurityLevelRequest"></wsdl:input>
|
1807
|
+
<wsdl:output message="impl:createIssueWithSecurityLevelResponse" name="createIssueWithSecurityLevelResponse"></wsdl:output>
|
1808
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1809
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1810
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1811
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1812
|
+
</wsdl:operation>
|
1813
|
+
<wsdl:operation name="hasPermissionToEditComment" parameterOrder="in0 in1">
|
1814
|
+
<wsdl:input message="impl:hasPermissionToEditCommentRequest" name="hasPermissionToEditCommentRequest"></wsdl:input>
|
1815
|
+
<wsdl:output message="impl:hasPermissionToEditCommentResponse" name="hasPermissionToEditCommentResponse"></wsdl:output>
|
1816
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1817
|
+
</wsdl:operation>
|
1818
|
+
<wsdl:operation name="getFieldsForAction" parameterOrder="in0 in1 in2">
|
1819
|
+
<wsdl:input message="impl:getFieldsForActionRequest" name="getFieldsForActionRequest"></wsdl:input>
|
1820
|
+
<wsdl:output message="impl:getFieldsForActionResponse" name="getFieldsForActionResponse"></wsdl:output>
|
1821
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1822
|
+
</wsdl:operation>
|
1823
|
+
<wsdl:operation name="progressWorkflowAction" parameterOrder="in0 in1 in2 in3">
|
1824
|
+
<wsdl:input message="impl:progressWorkflowActionRequest" name="progressWorkflowActionRequest"></wsdl:input>
|
1825
|
+
<wsdl:output message="impl:progressWorkflowActionResponse" name="progressWorkflowActionResponse"></wsdl:output>
|
1826
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1827
|
+
</wsdl:operation>
|
1828
|
+
<wsdl:operation name="getIssueById" parameterOrder="in0 in1">
|
1829
|
+
<wsdl:input message="impl:getIssueByIdRequest" name="getIssueByIdRequest"></wsdl:input>
|
1830
|
+
<wsdl:output message="impl:getIssueByIdResponse" name="getIssueByIdResponse"></wsdl:output>
|
1831
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1832
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1833
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1834
|
+
</wsdl:operation>
|
1835
|
+
<wsdl:operation name="addAttachmentsToIssue" parameterOrder="in0 in1 in2 in3">
|
1836
|
+
<wsdl:input message="impl:addAttachmentsToIssueRequest" name="addAttachmentsToIssueRequest"></wsdl:input>
|
1837
|
+
<wsdl:output message="impl:addAttachmentsToIssueResponse" name="addAttachmentsToIssueResponse"></wsdl:output>
|
1838
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1839
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1840
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1841
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1842
|
+
</wsdl:operation>
|
1843
|
+
<wsdl:operation name="getAttachmentsFromIssue" parameterOrder="in0 in1">
|
1844
|
+
<wsdl:input message="impl:getAttachmentsFromIssueRequest" name="getAttachmentsFromIssueRequest"></wsdl:input>
|
1845
|
+
<wsdl:output message="impl:getAttachmentsFromIssueResponse" name="getAttachmentsFromIssueResponse"></wsdl:output>
|
1846
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1847
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1848
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1849
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1850
|
+
</wsdl:operation>
|
1851
|
+
<wsdl:operation name="addWorklogWithNewRemainingEstimate" parameterOrder="in0 in1 in2 in3">
|
1852
|
+
<wsdl:input message="impl:addWorklogWithNewRemainingEstimateRequest" name="addWorklogWithNewRemainingEstimateRequest"></wsdl:input>
|
1853
|
+
<wsdl:output message="impl:addWorklogWithNewRemainingEstimateResponse" name="addWorklogWithNewRemainingEstimateResponse"></wsdl:output>
|
1854
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1855
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1856
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1857
|
+
</wsdl:operation>
|
1858
|
+
<wsdl:operation name="addWorklogAndAutoAdjustRemainingEstimate" parameterOrder="in0 in1 in2">
|
1859
|
+
<wsdl:input message="impl:addWorklogAndAutoAdjustRemainingEstimateRequest" name="addWorklogAndAutoAdjustRemainingEstimateRequest"></wsdl:input>
|
1860
|
+
<wsdl:output message="impl:addWorklogAndAutoAdjustRemainingEstimateResponse" name="addWorklogAndAutoAdjustRemainingEstimateResponse"></wsdl:output>
|
1861
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1862
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1863
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1864
|
+
</wsdl:operation>
|
1865
|
+
<wsdl:operation name="addWorklogAndRetainRemainingEstimate" parameterOrder="in0 in1 in2">
|
1866
|
+
<wsdl:input message="impl:addWorklogAndRetainRemainingEstimateRequest" name="addWorklogAndRetainRemainingEstimateRequest"></wsdl:input>
|
1867
|
+
<wsdl:output message="impl:addWorklogAndRetainRemainingEstimateResponse" name="addWorklogAndRetainRemainingEstimateResponse"></wsdl:output>
|
1868
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1869
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1870
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1871
|
+
</wsdl:operation>
|
1872
|
+
<wsdl:operation name="deleteWorklogAndAutoAdjustRemainingEstimate" parameterOrder="in0 in1">
|
1873
|
+
<wsdl:input message="impl:deleteWorklogAndAutoAdjustRemainingEstimateRequest" name="deleteWorklogAndAutoAdjustRemainingEstimateRequest"></wsdl:input>
|
1874
|
+
<wsdl:output message="impl:deleteWorklogAndAutoAdjustRemainingEstimateResponse" name="deleteWorklogAndAutoAdjustRemainingEstimateResponse"></wsdl:output>
|
1875
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1876
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1877
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1878
|
+
</wsdl:operation>
|
1879
|
+
<wsdl:operation name="deleteWorklogAndRetainRemainingEstimate" parameterOrder="in0 in1">
|
1880
|
+
<wsdl:input message="impl:deleteWorklogAndRetainRemainingEstimateRequest" name="deleteWorklogAndRetainRemainingEstimateRequest"></wsdl:input>
|
1881
|
+
<wsdl:output message="impl:deleteWorklogAndRetainRemainingEstimateResponse" name="deleteWorklogAndRetainRemainingEstimateResponse"></wsdl:output>
|
1882
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1883
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1884
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1885
|
+
</wsdl:operation>
|
1886
|
+
<wsdl:operation name="deleteWorklogWithNewRemainingEstimate" parameterOrder="in0 in1 in2">
|
1887
|
+
<wsdl:input message="impl:deleteWorklogWithNewRemainingEstimateRequest" name="deleteWorklogWithNewRemainingEstimateRequest"></wsdl:input>
|
1888
|
+
<wsdl:output message="impl:deleteWorklogWithNewRemainingEstimateResponse" name="deleteWorklogWithNewRemainingEstimateResponse"></wsdl:output>
|
1889
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1890
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1891
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1892
|
+
</wsdl:operation>
|
1893
|
+
<wsdl:operation name="updateWorklogAndAutoAdjustRemainingEstimate" parameterOrder="in0 in1">
|
1894
|
+
<wsdl:input message="impl:updateWorklogAndAutoAdjustRemainingEstimateRequest" name="updateWorklogAndAutoAdjustRemainingEstimateRequest"></wsdl:input>
|
1895
|
+
<wsdl:output message="impl:updateWorklogAndAutoAdjustRemainingEstimateResponse" name="updateWorklogAndAutoAdjustRemainingEstimateResponse"></wsdl:output>
|
1896
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1897
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1898
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1899
|
+
</wsdl:operation>
|
1900
|
+
<wsdl:operation name="updateWorklogAndRetainRemainingEstimate" parameterOrder="in0 in1">
|
1901
|
+
<wsdl:input message="impl:updateWorklogAndRetainRemainingEstimateRequest" name="updateWorklogAndRetainRemainingEstimateRequest"></wsdl:input>
|
1902
|
+
<wsdl:output message="impl:updateWorklogAndRetainRemainingEstimateResponse" name="updateWorklogAndRetainRemainingEstimateResponse"></wsdl:output>
|
1903
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1904
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1905
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1906
|
+
</wsdl:operation>
|
1907
|
+
<wsdl:operation name="updateWorklogWithNewRemainingEstimate" parameterOrder="in0 in1 in2">
|
1908
|
+
<wsdl:input message="impl:updateWorklogWithNewRemainingEstimateRequest" name="updateWorklogWithNewRemainingEstimateRequest"></wsdl:input>
|
1909
|
+
<wsdl:output message="impl:updateWorklogWithNewRemainingEstimateResponse" name="updateWorklogWithNewRemainingEstimateResponse"></wsdl:output>
|
1910
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1911
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1912
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1913
|
+
</wsdl:operation>
|
1914
|
+
<wsdl:operation name="getWorklogs" parameterOrder="in0 in1">
|
1915
|
+
<wsdl:input message="impl:getWorklogsRequest" name="getWorklogsRequest"></wsdl:input>
|
1916
|
+
<wsdl:output message="impl:getWorklogsResponse" name="getWorklogsResponse"></wsdl:output>
|
1917
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1918
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1919
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1920
|
+
</wsdl:operation>
|
1921
|
+
<wsdl:operation name="hasPermissionToCreateWorklog" parameterOrder="in0 in1">
|
1922
|
+
<wsdl:input message="impl:hasPermissionToCreateWorklogRequest" name="hasPermissionToCreateWorklogRequest"></wsdl:input>
|
1923
|
+
<wsdl:output message="impl:hasPermissionToCreateWorklogResponse" name="hasPermissionToCreateWorklogResponse"></wsdl:output>
|
1924
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1925
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1926
|
+
</wsdl:operation>
|
1927
|
+
<wsdl:operation name="hasPermissionToDeleteWorklog" parameterOrder="in0 in1">
|
1928
|
+
<wsdl:input message="impl:hasPermissionToDeleteWorklogRequest" name="hasPermissionToDeleteWorklogRequest"></wsdl:input>
|
1929
|
+
<wsdl:output message="impl:hasPermissionToDeleteWorklogResponse" name="hasPermissionToDeleteWorklogResponse"></wsdl:output>
|
1930
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1931
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1932
|
+
</wsdl:operation>
|
1933
|
+
<wsdl:operation name="hasPermissionToUpdateWorklog" parameterOrder="in0 in1">
|
1934
|
+
<wsdl:input message="impl:hasPermissionToUpdateWorklogRequest" name="hasPermissionToUpdateWorklogRequest"></wsdl:input>
|
1935
|
+
<wsdl:output message="impl:hasPermissionToUpdateWorklogResponse" name="hasPermissionToUpdateWorklogResponse"></wsdl:output>
|
1936
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1937
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1938
|
+
</wsdl:operation>
|
1939
|
+
<wsdl:operation name="getResolutionDateByKey" parameterOrder="in0 in1">
|
1940
|
+
<wsdl:input message="impl:getResolutionDateByKeyRequest" name="getResolutionDateByKeyRequest"></wsdl:input>
|
1941
|
+
<wsdl:output message="impl:getResolutionDateByKeyResponse" name="getResolutionDateByKeyResponse"></wsdl:output>
|
1942
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1943
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1944
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1945
|
+
</wsdl:operation>
|
1946
|
+
<wsdl:operation name="getResolutionDateById" parameterOrder="in0 in1">
|
1947
|
+
<wsdl:input message="impl:getResolutionDateByIdRequest" name="getResolutionDateByIdRequest"></wsdl:input>
|
1948
|
+
<wsdl:output message="impl:getResolutionDateByIdResponse" name="getResolutionDateByIdResponse"></wsdl:output>
|
1949
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1950
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1951
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1952
|
+
</wsdl:operation>
|
1953
|
+
<wsdl:operation name="getIssueCountForFilter" parameterOrder="in0 in1">
|
1954
|
+
<wsdl:input message="impl:getIssueCountForFilterRequest" name="getIssueCountForFilterRequest"></wsdl:input>
|
1955
|
+
<wsdl:output message="impl:getIssueCountForFilterResponse" name="getIssueCountForFilterResponse"></wsdl:output>
|
1956
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1957
|
+
</wsdl:operation>
|
1958
|
+
<wsdl:operation name="getIssuesFromTextSearch" parameterOrder="in0 in1">
|
1959
|
+
<wsdl:input message="impl:getIssuesFromTextSearchRequest" name="getIssuesFromTextSearchRequest"></wsdl:input>
|
1960
|
+
<wsdl:output message="impl:getIssuesFromTextSearchResponse" name="getIssuesFromTextSearchResponse"></wsdl:output>
|
1961
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1962
|
+
</wsdl:operation>
|
1963
|
+
<wsdl:operation name="getIssuesFromTextSearchWithProject" parameterOrder="in0 in1 in2 in3">
|
1964
|
+
<wsdl:input message="impl:getIssuesFromTextSearchWithProjectRequest" name="getIssuesFromTextSearchWithProjectRequest"></wsdl:input>
|
1965
|
+
<wsdl:output message="impl:getIssuesFromTextSearchWithProjectResponse" name="getIssuesFromTextSearchWithProjectResponse"></wsdl:output>
|
1966
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1967
|
+
</wsdl:operation>
|
1968
|
+
<wsdl:operation name="getIssuesFromJqlSearch" parameterOrder="in0 in1 in2">
|
1969
|
+
<wsdl:input message="impl:getIssuesFromJqlSearchRequest" name="getIssuesFromJqlSearchRequest"></wsdl:input>
|
1970
|
+
<wsdl:output message="impl:getIssuesFromJqlSearchResponse" name="getIssuesFromJqlSearchResponse"></wsdl:output>
|
1971
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1972
|
+
</wsdl:operation>
|
1973
|
+
<wsdl:operation name="setUserPassword" parameterOrder="in0 in1 in2">
|
1974
|
+
<wsdl:input message="impl:setUserPasswordRequest" name="setUserPasswordRequest"></wsdl:input>
|
1975
|
+
<wsdl:output message="impl:setUserPasswordResponse" name="setUserPasswordResponse"></wsdl:output>
|
1976
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1977
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1978
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1979
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1980
|
+
</wsdl:operation>
|
1981
|
+
<wsdl:operation name="deleteUser" parameterOrder="in0 in1">
|
1982
|
+
<wsdl:input message="impl:deleteUserRequest" name="deleteUserRequest"></wsdl:input>
|
1983
|
+
<wsdl:output message="impl:deleteUserResponse" name="deleteUserResponse"></wsdl:output>
|
1984
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1985
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1986
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1987
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1988
|
+
</wsdl:operation>
|
1989
|
+
<wsdl:operation name="deleteGroup" parameterOrder="in0 in1 in2">
|
1990
|
+
<wsdl:input message="impl:deleteGroupRequest" name="deleteGroupRequest"></wsdl:input>
|
1991
|
+
<wsdl:output message="impl:deleteGroupResponse" name="deleteGroupResponse"></wsdl:output>
|
1992
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
1993
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
1994
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
1995
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
1996
|
+
</wsdl:operation>
|
1997
|
+
<wsdl:operation name="refreshCustomFields" parameterOrder="in0">
|
1998
|
+
<wsdl:input message="impl:refreshCustomFieldsRequest" name="refreshCustomFieldsRequest"></wsdl:input>
|
1999
|
+
<wsdl:output message="impl:refreshCustomFieldsResponse" name="refreshCustomFieldsResponse"></wsdl:output>
|
2000
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2001
|
+
</wsdl:operation>
|
2002
|
+
<wsdl:operation name="getProjectsNoSchemes" parameterOrder="in0">
|
2003
|
+
<wsdl:input message="impl:getProjectsNoSchemesRequest" name="getProjectsNoSchemesRequest"></wsdl:input>
|
2004
|
+
<wsdl:output message="impl:getProjectsNoSchemesResponse" name="getProjectsNoSchemesResponse"></wsdl:output>
|
2005
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
2006
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
2007
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2008
|
+
</wsdl:operation>
|
2009
|
+
<wsdl:operation name="addVersion" parameterOrder="in0 in1 in2">
|
2010
|
+
<wsdl:input message="impl:addVersionRequest" name="addVersionRequest"></wsdl:input>
|
2011
|
+
<wsdl:output message="impl:addVersionResponse" name="addVersionResponse"></wsdl:output>
|
2012
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2013
|
+
</wsdl:operation>
|
2014
|
+
<wsdl:operation name="getSavedFilters" parameterOrder="in0">
|
2015
|
+
<wsdl:input message="impl:getSavedFiltersRequest" name="getSavedFiltersRequest"></wsdl:input>
|
2016
|
+
<wsdl:output message="impl:getSavedFiltersResponse" name="getSavedFiltersResponse"></wsdl:output>
|
2017
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
2018
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
2019
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2020
|
+
</wsdl:operation>
|
2021
|
+
<wsdl:operation name="createIssueWithParent" parameterOrder="in0 in1 in2">
|
2022
|
+
<wsdl:input message="impl:createIssueWithParentRequest" name="createIssueWithParentRequest"></wsdl:input>
|
2023
|
+
<wsdl:output message="impl:createIssueWithParentResponse" name="createIssueWithParentResponse"></wsdl:output>
|
2024
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
2025
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
2026
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
2027
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2028
|
+
</wsdl:operation>
|
2029
|
+
<wsdl:operation name="createIssueWithParentWithSecurityLevel" parameterOrder="in0 in1 in2 in3">
|
2030
|
+
<wsdl:input message="impl:createIssueWithParentWithSecurityLevelRequest" name="createIssueWithParentWithSecurityLevelRequest"></wsdl:input>
|
2031
|
+
<wsdl:output message="impl:createIssueWithParentWithSecurityLevelResponse" name="createIssueWithParentWithSecurityLevelResponse"></wsdl:output>
|
2032
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
2033
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
2034
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
2035
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2036
|
+
</wsdl:operation>
|
2037
|
+
<wsdl:operation name="addBase64EncodedAttachmentsToIssue" parameterOrder="in0 in1 in2 in3">
|
2038
|
+
<wsdl:input message="impl:addBase64EncodedAttachmentsToIssueRequest" name="addBase64EncodedAttachmentsToIssueRequest"></wsdl:input>
|
2039
|
+
<wsdl:output message="impl:addBase64EncodedAttachmentsToIssueResponse" name="addBase64EncodedAttachmentsToIssueResponse"></wsdl:output>
|
2040
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
2041
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
2042
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
2043
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2044
|
+
</wsdl:operation>
|
2045
|
+
<wsdl:operation name="createProjectFromObject" parameterOrder="in0 in1">
|
2046
|
+
<wsdl:input message="impl:createProjectFromObjectRequest" name="createProjectFromObjectRequest"></wsdl:input>
|
2047
|
+
<wsdl:output message="impl:createProjectFromObjectResponse" name="createProjectFromObjectResponse"></wsdl:output>
|
2048
|
+
<wsdl:fault message="impl:RemoteValidationException" name="RemoteValidationException"></wsdl:fault>
|
2049
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
2050
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
2051
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2052
|
+
</wsdl:operation>
|
2053
|
+
<wsdl:operation name="getSecuritySchemes" parameterOrder="in0">
|
2054
|
+
<wsdl:input message="impl:getSecuritySchemesRequest" name="getSecuritySchemesRequest"></wsdl:input>
|
2055
|
+
<wsdl:output message="impl:getSecuritySchemesResponse" name="getSecuritySchemesResponse"></wsdl:output>
|
2056
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
2057
|
+
<wsdl:fault message="impl:RemoteAuthenticationException" name="RemoteAuthenticationException"></wsdl:fault>
|
2058
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2059
|
+
</wsdl:operation>
|
2060
|
+
<wsdl:operation name="getIssuesFromFilter" parameterOrder="in0 in1">
|
2061
|
+
<wsdl:input message="impl:getIssuesFromFilterRequest" name="getIssuesFromFilterRequest"></wsdl:input>
|
2062
|
+
<wsdl:output message="impl:getIssuesFromFilterResponse" name="getIssuesFromFilterResponse"></wsdl:output>
|
2063
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2064
|
+
</wsdl:operation>
|
2065
|
+
<wsdl:operation name="getIssuesFromFilterWithLimit" parameterOrder="in0 in1 in2 in3">
|
2066
|
+
<wsdl:input message="impl:getIssuesFromFilterWithLimitRequest" name="getIssuesFromFilterWithLimitRequest"></wsdl:input>
|
2067
|
+
<wsdl:output message="impl:getIssuesFromFilterWithLimitResponse" name="getIssuesFromFilterWithLimitResponse"></wsdl:output>
|
2068
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2069
|
+
</wsdl:operation>
|
2070
|
+
<wsdl:operation name="getIssuesFromTextSearchWithLimit" parameterOrder="in0 in1 in2 in3">
|
2071
|
+
<wsdl:input message="impl:getIssuesFromTextSearchWithLimitRequest" name="getIssuesFromTextSearchWithLimitRequest"></wsdl:input>
|
2072
|
+
<wsdl:output message="impl:getIssuesFromTextSearchWithLimitResponse" name="getIssuesFromTextSearchWithLimitResponse"></wsdl:output>
|
2073
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2074
|
+
</wsdl:operation>
|
2075
|
+
<wsdl:operation name="setNewProjectAvatar" parameterOrder="in0 in1 in2 in3">
|
2076
|
+
<wsdl:input message="impl:setNewProjectAvatarRequest" name="setNewProjectAvatarRequest"></wsdl:input>
|
2077
|
+
<wsdl:output message="impl:setNewProjectAvatarResponse" name="setNewProjectAvatarResponse"></wsdl:output>
|
2078
|
+
<wsdl:fault message="impl:RemotePermissionException" name="RemotePermissionException"></wsdl:fault>
|
2079
|
+
<wsdl:fault message="impl:RemoteException" name="RemoteException"></wsdl:fault>
|
2080
|
+
</wsdl:operation>
|
2081
|
+
</wsdl:portType>
|
2082
|
+
<wsdl:binding name="jirasoapservice-v2SoapBinding" type="impl:JiraSoapService">
|
2083
|
+
<wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
2084
|
+
<wsdl:operation name="getComment">
|
2085
|
+
<wsdlsoap:operation soapAction=""/>
|
2086
|
+
<wsdl:input name="getCommentRequest">
|
2087
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2088
|
+
</wsdl:input>
|
2089
|
+
<wsdl:output name="getCommentResponse">
|
2090
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2091
|
+
</wsdl:output>
|
2092
|
+
<wsdl:fault name="RemoteException">
|
2093
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2094
|
+
</wsdl:fault>
|
2095
|
+
</wsdl:operation>
|
2096
|
+
<wsdl:operation name="getConfiguration">
|
2097
|
+
<wsdlsoap:operation soapAction=""/>
|
2098
|
+
<wsdl:input name="getConfigurationRequest">
|
2099
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2100
|
+
</wsdl:input>
|
2101
|
+
<wsdl:output name="getConfigurationResponse">
|
2102
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2103
|
+
</wsdl:output>
|
2104
|
+
<wsdl:fault name="RemotePermissionException">
|
2105
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2106
|
+
</wsdl:fault>
|
2107
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2108
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2109
|
+
</wsdl:fault>
|
2110
|
+
<wsdl:fault name="RemoteException">
|
2111
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2112
|
+
</wsdl:fault>
|
2113
|
+
</wsdl:operation>
|
2114
|
+
<wsdl:operation name="createGroup">
|
2115
|
+
<wsdlsoap:operation soapAction=""/>
|
2116
|
+
<wsdl:input name="createGroupRequest">
|
2117
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2118
|
+
</wsdl:input>
|
2119
|
+
<wsdl:output name="createGroupResponse">
|
2120
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2121
|
+
</wsdl:output>
|
2122
|
+
<wsdl:fault name="RemoteValidationException">
|
2123
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2124
|
+
</wsdl:fault>
|
2125
|
+
<wsdl:fault name="RemotePermissionException">
|
2126
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2127
|
+
</wsdl:fault>
|
2128
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2129
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2130
|
+
</wsdl:fault>
|
2131
|
+
<wsdl:fault name="RemoteException">
|
2132
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2133
|
+
</wsdl:fault>
|
2134
|
+
</wsdl:operation>
|
2135
|
+
<wsdl:operation name="getServerInfo">
|
2136
|
+
<wsdlsoap:operation soapAction=""/>
|
2137
|
+
<wsdl:input name="getServerInfoRequest">
|
2138
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2139
|
+
</wsdl:input>
|
2140
|
+
<wsdl:output name="getServerInfoResponse">
|
2141
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2142
|
+
</wsdl:output>
|
2143
|
+
</wsdl:operation>
|
2144
|
+
<wsdl:operation name="getGroup">
|
2145
|
+
<wsdlsoap:operation soapAction=""/>
|
2146
|
+
<wsdl:input name="getGroupRequest">
|
2147
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2148
|
+
</wsdl:input>
|
2149
|
+
<wsdl:output name="getGroupResponse">
|
2150
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2151
|
+
</wsdl:output>
|
2152
|
+
<wsdl:fault name="RemoteValidationException">
|
2153
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2154
|
+
</wsdl:fault>
|
2155
|
+
<wsdl:fault name="RemotePermissionException">
|
2156
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2157
|
+
</wsdl:fault>
|
2158
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2159
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2160
|
+
</wsdl:fault>
|
2161
|
+
<wsdl:fault name="RemoteException">
|
2162
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2163
|
+
</wsdl:fault>
|
2164
|
+
</wsdl:operation>
|
2165
|
+
<wsdl:operation name="createUser">
|
2166
|
+
<wsdlsoap:operation soapAction=""/>
|
2167
|
+
<wsdl:input name="createUserRequest">
|
2168
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2169
|
+
</wsdl:input>
|
2170
|
+
<wsdl:output name="createUserResponse">
|
2171
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2172
|
+
</wsdl:output>
|
2173
|
+
<wsdl:fault name="RemoteValidationException">
|
2174
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2175
|
+
</wsdl:fault>
|
2176
|
+
<wsdl:fault name="RemotePermissionException">
|
2177
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2178
|
+
</wsdl:fault>
|
2179
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2180
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2181
|
+
</wsdl:fault>
|
2182
|
+
<wsdl:fault name="RemoteException">
|
2183
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2184
|
+
</wsdl:fault>
|
2185
|
+
</wsdl:operation>
|
2186
|
+
<wsdl:operation name="addComment">
|
2187
|
+
<wsdlsoap:operation soapAction=""/>
|
2188
|
+
<wsdl:input name="addCommentRequest">
|
2189
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2190
|
+
</wsdl:input>
|
2191
|
+
<wsdl:output name="addCommentResponse">
|
2192
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2193
|
+
</wsdl:output>
|
2194
|
+
<wsdl:fault name="RemotePermissionException">
|
2195
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2196
|
+
</wsdl:fault>
|
2197
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2198
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2199
|
+
</wsdl:fault>
|
2200
|
+
<wsdl:fault name="RemoteException">
|
2201
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2202
|
+
</wsdl:fault>
|
2203
|
+
</wsdl:operation>
|
2204
|
+
<wsdl:operation name="createIssue">
|
2205
|
+
<wsdlsoap:operation soapAction=""/>
|
2206
|
+
<wsdl:input name="createIssueRequest">
|
2207
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2208
|
+
</wsdl:input>
|
2209
|
+
<wsdl:output name="createIssueResponse">
|
2210
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2211
|
+
</wsdl:output>
|
2212
|
+
<wsdl:fault name="RemoteValidationException">
|
2213
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2214
|
+
</wsdl:fault>
|
2215
|
+
<wsdl:fault name="RemotePermissionException">
|
2216
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2217
|
+
</wsdl:fault>
|
2218
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2219
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2220
|
+
</wsdl:fault>
|
2221
|
+
<wsdl:fault name="RemoteException">
|
2222
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2223
|
+
</wsdl:fault>
|
2224
|
+
</wsdl:operation>
|
2225
|
+
<wsdl:operation name="getComponents">
|
2226
|
+
<wsdlsoap:operation soapAction=""/>
|
2227
|
+
<wsdl:input name="getComponentsRequest">
|
2228
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2229
|
+
</wsdl:input>
|
2230
|
+
<wsdl:output name="getComponentsResponse">
|
2231
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2232
|
+
</wsdl:output>
|
2233
|
+
<wsdl:fault name="RemotePermissionException">
|
2234
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2235
|
+
</wsdl:fault>
|
2236
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2237
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2238
|
+
</wsdl:fault>
|
2239
|
+
<wsdl:fault name="RemoteException">
|
2240
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2241
|
+
</wsdl:fault>
|
2242
|
+
</wsdl:operation>
|
2243
|
+
<wsdl:operation name="getUser">
|
2244
|
+
<wsdlsoap:operation soapAction=""/>
|
2245
|
+
<wsdl:input name="getUserRequest">
|
2246
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2247
|
+
</wsdl:input>
|
2248
|
+
<wsdl:output name="getUserResponse">
|
2249
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2250
|
+
</wsdl:output>
|
2251
|
+
<wsdl:fault name="RemotePermissionException">
|
2252
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2253
|
+
</wsdl:fault>
|
2254
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2255
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2256
|
+
</wsdl:fault>
|
2257
|
+
</wsdl:operation>
|
2258
|
+
<wsdl:operation name="updateUser">
|
2259
|
+
<wsdlsoap:operation soapAction=""/>
|
2260
|
+
<wsdl:input name="updateUserRequest">
|
2261
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2262
|
+
</wsdl:input>
|
2263
|
+
<wsdl:output name="updateUserResponse">
|
2264
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2265
|
+
</wsdl:output>
|
2266
|
+
<wsdl:fault name="RemoteValidationException">
|
2267
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2268
|
+
</wsdl:fault>
|
2269
|
+
<wsdl:fault name="RemotePermissionException">
|
2270
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2271
|
+
</wsdl:fault>
|
2272
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2273
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2274
|
+
</wsdl:fault>
|
2275
|
+
<wsdl:fault name="RemoteException">
|
2276
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2277
|
+
</wsdl:fault>
|
2278
|
+
</wsdl:operation>
|
2279
|
+
<wsdl:operation name="updateGroup">
|
2280
|
+
<wsdlsoap:operation soapAction=""/>
|
2281
|
+
<wsdl:input name="updateGroupRequest">
|
2282
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2283
|
+
</wsdl:input>
|
2284
|
+
<wsdl:output name="updateGroupResponse">
|
2285
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2286
|
+
</wsdl:output>
|
2287
|
+
<wsdl:fault name="RemoteValidationException">
|
2288
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2289
|
+
</wsdl:fault>
|
2290
|
+
<wsdl:fault name="RemotePermissionException">
|
2291
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2292
|
+
</wsdl:fault>
|
2293
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2294
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2295
|
+
</wsdl:fault>
|
2296
|
+
<wsdl:fault name="RemoteException">
|
2297
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2298
|
+
</wsdl:fault>
|
2299
|
+
</wsdl:operation>
|
2300
|
+
<wsdl:operation name="addUserToGroup">
|
2301
|
+
<wsdlsoap:operation soapAction=""/>
|
2302
|
+
<wsdl:input name="addUserToGroupRequest">
|
2303
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2304
|
+
</wsdl:input>
|
2305
|
+
<wsdl:output name="addUserToGroupResponse">
|
2306
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2307
|
+
</wsdl:output>
|
2308
|
+
<wsdl:fault name="RemoteValidationException">
|
2309
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2310
|
+
</wsdl:fault>
|
2311
|
+
<wsdl:fault name="RemotePermissionException">
|
2312
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2313
|
+
</wsdl:fault>
|
2314
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2315
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2316
|
+
</wsdl:fault>
|
2317
|
+
<wsdl:fault name="RemoteException">
|
2318
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2319
|
+
</wsdl:fault>
|
2320
|
+
</wsdl:operation>
|
2321
|
+
<wsdl:operation name="removeUserFromGroup">
|
2322
|
+
<wsdlsoap:operation soapAction=""/>
|
2323
|
+
<wsdl:input name="removeUserFromGroupRequest">
|
2324
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2325
|
+
</wsdl:input>
|
2326
|
+
<wsdl:output name="removeUserFromGroupResponse">
|
2327
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2328
|
+
</wsdl:output>
|
2329
|
+
<wsdl:fault name="RemoteValidationException">
|
2330
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2331
|
+
</wsdl:fault>
|
2332
|
+
<wsdl:fault name="RemotePermissionException">
|
2333
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2334
|
+
</wsdl:fault>
|
2335
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2336
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2337
|
+
</wsdl:fault>
|
2338
|
+
<wsdl:fault name="RemoteException">
|
2339
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2340
|
+
</wsdl:fault>
|
2341
|
+
</wsdl:operation>
|
2342
|
+
<wsdl:operation name="getIssue">
|
2343
|
+
<wsdlsoap:operation soapAction=""/>
|
2344
|
+
<wsdl:input name="getIssueRequest">
|
2345
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2346
|
+
</wsdl:input>
|
2347
|
+
<wsdl:output name="getIssueResponse">
|
2348
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2349
|
+
</wsdl:output>
|
2350
|
+
<wsdl:fault name="RemotePermissionException">
|
2351
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2352
|
+
</wsdl:fault>
|
2353
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2354
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2355
|
+
</wsdl:fault>
|
2356
|
+
<wsdl:fault name="RemoteException">
|
2357
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2358
|
+
</wsdl:fault>
|
2359
|
+
</wsdl:operation>
|
2360
|
+
<wsdl:operation name="updateIssue">
|
2361
|
+
<wsdlsoap:operation soapAction=""/>
|
2362
|
+
<wsdl:input name="updateIssueRequest">
|
2363
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2364
|
+
</wsdl:input>
|
2365
|
+
<wsdl:output name="updateIssueResponse">
|
2366
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2367
|
+
</wsdl:output>
|
2368
|
+
<wsdl:fault name="RemoteException">
|
2369
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2370
|
+
</wsdl:fault>
|
2371
|
+
</wsdl:operation>
|
2372
|
+
<wsdl:operation name="deleteIssue">
|
2373
|
+
<wsdlsoap:operation soapAction=""/>
|
2374
|
+
<wsdl:input name="deleteIssueRequest">
|
2375
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2376
|
+
</wsdl:input>
|
2377
|
+
<wsdl:output name="deleteIssueResponse">
|
2378
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2379
|
+
</wsdl:output>
|
2380
|
+
<wsdl:fault name="RemotePermissionException">
|
2381
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2382
|
+
</wsdl:fault>
|
2383
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2384
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2385
|
+
</wsdl:fault>
|
2386
|
+
<wsdl:fault name="RemoteException">
|
2387
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2388
|
+
</wsdl:fault>
|
2389
|
+
</wsdl:operation>
|
2390
|
+
<wsdl:operation name="getAvailableActions">
|
2391
|
+
<wsdlsoap:operation soapAction=""/>
|
2392
|
+
<wsdl:input name="getAvailableActionsRequest">
|
2393
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2394
|
+
</wsdl:input>
|
2395
|
+
<wsdl:output name="getAvailableActionsResponse">
|
2396
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2397
|
+
</wsdl:output>
|
2398
|
+
<wsdl:fault name="RemoteException">
|
2399
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2400
|
+
</wsdl:fault>
|
2401
|
+
</wsdl:operation>
|
2402
|
+
<wsdl:operation name="getSecurityLevel">
|
2403
|
+
<wsdlsoap:operation soapAction=""/>
|
2404
|
+
<wsdl:input name="getSecurityLevelRequest">
|
2405
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2406
|
+
</wsdl:input>
|
2407
|
+
<wsdl:output name="getSecurityLevelResponse">
|
2408
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2409
|
+
</wsdl:output>
|
2410
|
+
<wsdl:fault name="RemotePermissionException">
|
2411
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2412
|
+
</wsdl:fault>
|
2413
|
+
<wsdl:fault name="RemoteException">
|
2414
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2415
|
+
</wsdl:fault>
|
2416
|
+
</wsdl:operation>
|
2417
|
+
<wsdl:operation name="createProject">
|
2418
|
+
<wsdlsoap:operation soapAction=""/>
|
2419
|
+
<wsdl:input name="createProjectRequest">
|
2420
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2421
|
+
</wsdl:input>
|
2422
|
+
<wsdl:output name="createProjectResponse">
|
2423
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2424
|
+
</wsdl:output>
|
2425
|
+
<wsdl:fault name="RemoteValidationException">
|
2426
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2427
|
+
</wsdl:fault>
|
2428
|
+
<wsdl:fault name="RemotePermissionException">
|
2429
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2430
|
+
</wsdl:fault>
|
2431
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2432
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2433
|
+
</wsdl:fault>
|
2434
|
+
<wsdl:fault name="RemoteException">
|
2435
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2436
|
+
</wsdl:fault>
|
2437
|
+
</wsdl:operation>
|
2438
|
+
<wsdl:operation name="updateProject">
|
2439
|
+
<wsdlsoap:operation soapAction=""/>
|
2440
|
+
<wsdl:input name="updateProjectRequest">
|
2441
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2442
|
+
</wsdl:input>
|
2443
|
+
<wsdl:output name="updateProjectResponse">
|
2444
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2445
|
+
</wsdl:output>
|
2446
|
+
<wsdl:fault name="RemoteValidationException">
|
2447
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2448
|
+
</wsdl:fault>
|
2449
|
+
<wsdl:fault name="RemotePermissionException">
|
2450
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2451
|
+
</wsdl:fault>
|
2452
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2453
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2454
|
+
</wsdl:fault>
|
2455
|
+
<wsdl:fault name="RemoteException">
|
2456
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2457
|
+
</wsdl:fault>
|
2458
|
+
</wsdl:operation>
|
2459
|
+
<wsdl:operation name="getProjectByKey">
|
2460
|
+
<wsdlsoap:operation soapAction=""/>
|
2461
|
+
<wsdl:input name="getProjectByKeyRequest">
|
2462
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2463
|
+
</wsdl:input>
|
2464
|
+
<wsdl:output name="getProjectByKeyResponse">
|
2465
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2466
|
+
</wsdl:output>
|
2467
|
+
<wsdl:fault name="RemotePermissionException">
|
2468
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2469
|
+
</wsdl:fault>
|
2470
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2471
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2472
|
+
</wsdl:fault>
|
2473
|
+
<wsdl:fault name="RemoteException">
|
2474
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2475
|
+
</wsdl:fault>
|
2476
|
+
</wsdl:operation>
|
2477
|
+
<wsdl:operation name="removeAllRoleActorsByProject">
|
2478
|
+
<wsdlsoap:operation soapAction=""/>
|
2479
|
+
<wsdl:input name="removeAllRoleActorsByProjectRequest">
|
2480
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2481
|
+
</wsdl:input>
|
2482
|
+
<wsdl:output name="removeAllRoleActorsByProjectResponse">
|
2483
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2484
|
+
</wsdl:output>
|
2485
|
+
<wsdl:fault name="RemoteException">
|
2486
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2487
|
+
</wsdl:fault>
|
2488
|
+
</wsdl:operation>
|
2489
|
+
<wsdl:operation name="getPriorities">
|
2490
|
+
<wsdlsoap:operation soapAction=""/>
|
2491
|
+
<wsdl:input name="getPrioritiesRequest">
|
2492
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2493
|
+
</wsdl:input>
|
2494
|
+
<wsdl:output name="getPrioritiesResponse">
|
2495
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2496
|
+
</wsdl:output>
|
2497
|
+
<wsdl:fault name="RemotePermissionException">
|
2498
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2499
|
+
</wsdl:fault>
|
2500
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2501
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2502
|
+
</wsdl:fault>
|
2503
|
+
</wsdl:operation>
|
2504
|
+
<wsdl:operation name="getResolutions">
|
2505
|
+
<wsdlsoap:operation soapAction=""/>
|
2506
|
+
<wsdl:input name="getResolutionsRequest">
|
2507
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2508
|
+
</wsdl:input>
|
2509
|
+
<wsdl:output name="getResolutionsResponse">
|
2510
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2511
|
+
</wsdl:output>
|
2512
|
+
<wsdl:fault name="RemotePermissionException">
|
2513
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2514
|
+
</wsdl:fault>
|
2515
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2516
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2517
|
+
</wsdl:fault>
|
2518
|
+
</wsdl:operation>
|
2519
|
+
<wsdl:operation name="getIssueTypes">
|
2520
|
+
<wsdlsoap:operation soapAction=""/>
|
2521
|
+
<wsdl:input name="getIssueTypesRequest">
|
2522
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2523
|
+
</wsdl:input>
|
2524
|
+
<wsdl:output name="getIssueTypesResponse">
|
2525
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2526
|
+
</wsdl:output>
|
2527
|
+
<wsdl:fault name="RemotePermissionException">
|
2528
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2529
|
+
</wsdl:fault>
|
2530
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2531
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2532
|
+
</wsdl:fault>
|
2533
|
+
</wsdl:operation>
|
2534
|
+
<wsdl:operation name="getSubTaskIssueTypes">
|
2535
|
+
<wsdlsoap:operation soapAction=""/>
|
2536
|
+
<wsdl:input name="getSubTaskIssueTypesRequest">
|
2537
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2538
|
+
</wsdl:input>
|
2539
|
+
<wsdl:output name="getSubTaskIssueTypesResponse">
|
2540
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2541
|
+
</wsdl:output>
|
2542
|
+
<wsdl:fault name="RemotePermissionException">
|
2543
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2544
|
+
</wsdl:fault>
|
2545
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2546
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2547
|
+
</wsdl:fault>
|
2548
|
+
</wsdl:operation>
|
2549
|
+
<wsdl:operation name="getStatuses">
|
2550
|
+
<wsdlsoap:operation soapAction=""/>
|
2551
|
+
<wsdl:input name="getStatusesRequest">
|
2552
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2553
|
+
</wsdl:input>
|
2554
|
+
<wsdl:output name="getStatusesResponse">
|
2555
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2556
|
+
</wsdl:output>
|
2557
|
+
<wsdl:fault name="RemotePermissionException">
|
2558
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2559
|
+
</wsdl:fault>
|
2560
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2561
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2562
|
+
</wsdl:fault>
|
2563
|
+
</wsdl:operation>
|
2564
|
+
<wsdl:operation name="getIssueTypesForProject">
|
2565
|
+
<wsdlsoap:operation soapAction=""/>
|
2566
|
+
<wsdl:input name="getIssueTypesForProjectRequest">
|
2567
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2568
|
+
</wsdl:input>
|
2569
|
+
<wsdl:output name="getIssueTypesForProjectResponse">
|
2570
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2571
|
+
</wsdl:output>
|
2572
|
+
<wsdl:fault name="RemotePermissionException">
|
2573
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2574
|
+
</wsdl:fault>
|
2575
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2576
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2577
|
+
</wsdl:fault>
|
2578
|
+
</wsdl:operation>
|
2579
|
+
<wsdl:operation name="getProjectRoles">
|
2580
|
+
<wsdlsoap:operation soapAction=""/>
|
2581
|
+
<wsdl:input name="getProjectRolesRequest">
|
2582
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2583
|
+
</wsdl:input>
|
2584
|
+
<wsdl:output name="getProjectRolesResponse">
|
2585
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2586
|
+
</wsdl:output>
|
2587
|
+
<wsdl:fault name="RemoteException">
|
2588
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2589
|
+
</wsdl:fault>
|
2590
|
+
</wsdl:operation>
|
2591
|
+
<wsdl:operation name="getProjectRole">
|
2592
|
+
<wsdlsoap:operation soapAction=""/>
|
2593
|
+
<wsdl:input name="getProjectRoleRequest">
|
2594
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2595
|
+
</wsdl:input>
|
2596
|
+
<wsdl:output name="getProjectRoleResponse">
|
2597
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2598
|
+
</wsdl:output>
|
2599
|
+
<wsdl:fault name="RemoteException">
|
2600
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2601
|
+
</wsdl:fault>
|
2602
|
+
</wsdl:operation>
|
2603
|
+
<wsdl:operation name="getProjectRoleActors">
|
2604
|
+
<wsdlsoap:operation soapAction=""/>
|
2605
|
+
<wsdl:input name="getProjectRoleActorsRequest">
|
2606
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2607
|
+
</wsdl:input>
|
2608
|
+
<wsdl:output name="getProjectRoleActorsResponse">
|
2609
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2610
|
+
</wsdl:output>
|
2611
|
+
<wsdl:fault name="RemoteException">
|
2612
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2613
|
+
</wsdl:fault>
|
2614
|
+
</wsdl:operation>
|
2615
|
+
<wsdl:operation name="getDefaultRoleActors">
|
2616
|
+
<wsdlsoap:operation soapAction=""/>
|
2617
|
+
<wsdl:input name="getDefaultRoleActorsRequest">
|
2618
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2619
|
+
</wsdl:input>
|
2620
|
+
<wsdl:output name="getDefaultRoleActorsResponse">
|
2621
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2622
|
+
</wsdl:output>
|
2623
|
+
<wsdl:fault name="RemoteException">
|
2624
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2625
|
+
</wsdl:fault>
|
2626
|
+
</wsdl:operation>
|
2627
|
+
<wsdl:operation name="removeAllRoleActorsByNameAndType">
|
2628
|
+
<wsdlsoap:operation soapAction=""/>
|
2629
|
+
<wsdl:input name="removeAllRoleActorsByNameAndTypeRequest">
|
2630
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2631
|
+
</wsdl:input>
|
2632
|
+
<wsdl:output name="removeAllRoleActorsByNameAndTypeResponse">
|
2633
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2634
|
+
</wsdl:output>
|
2635
|
+
<wsdl:fault name="RemoteException">
|
2636
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2637
|
+
</wsdl:fault>
|
2638
|
+
</wsdl:operation>
|
2639
|
+
<wsdl:operation name="deleteProjectRole">
|
2640
|
+
<wsdlsoap:operation soapAction=""/>
|
2641
|
+
<wsdl:input name="deleteProjectRoleRequest">
|
2642
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2643
|
+
</wsdl:input>
|
2644
|
+
<wsdl:output name="deleteProjectRoleResponse">
|
2645
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2646
|
+
</wsdl:output>
|
2647
|
+
<wsdl:fault name="RemoteException">
|
2648
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2649
|
+
</wsdl:fault>
|
2650
|
+
</wsdl:operation>
|
2651
|
+
<wsdl:operation name="updateProjectRole">
|
2652
|
+
<wsdlsoap:operation soapAction=""/>
|
2653
|
+
<wsdl:input name="updateProjectRoleRequest">
|
2654
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2655
|
+
</wsdl:input>
|
2656
|
+
<wsdl:output name="updateProjectRoleResponse">
|
2657
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2658
|
+
</wsdl:output>
|
2659
|
+
<wsdl:fault name="RemoteException">
|
2660
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2661
|
+
</wsdl:fault>
|
2662
|
+
</wsdl:operation>
|
2663
|
+
<wsdl:operation name="createProjectRole">
|
2664
|
+
<wsdlsoap:operation soapAction=""/>
|
2665
|
+
<wsdl:input name="createProjectRoleRequest">
|
2666
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2667
|
+
</wsdl:input>
|
2668
|
+
<wsdl:output name="createProjectRoleResponse">
|
2669
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2670
|
+
</wsdl:output>
|
2671
|
+
<wsdl:fault name="RemoteException">
|
2672
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2673
|
+
</wsdl:fault>
|
2674
|
+
</wsdl:operation>
|
2675
|
+
<wsdl:operation name="isProjectRoleNameUnique">
|
2676
|
+
<wsdlsoap:operation soapAction=""/>
|
2677
|
+
<wsdl:input name="isProjectRoleNameUniqueRequest">
|
2678
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2679
|
+
</wsdl:input>
|
2680
|
+
<wsdl:output name="isProjectRoleNameUniqueResponse">
|
2681
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2682
|
+
</wsdl:output>
|
2683
|
+
<wsdl:fault name="RemoteException">
|
2684
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2685
|
+
</wsdl:fault>
|
2686
|
+
</wsdl:operation>
|
2687
|
+
<wsdl:operation name="addActorsToProjectRole">
|
2688
|
+
<wsdlsoap:operation soapAction=""/>
|
2689
|
+
<wsdl:input name="addActorsToProjectRoleRequest">
|
2690
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2691
|
+
</wsdl:input>
|
2692
|
+
<wsdl:output name="addActorsToProjectRoleResponse">
|
2693
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2694
|
+
</wsdl:output>
|
2695
|
+
<wsdl:fault name="RemoteException">
|
2696
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2697
|
+
</wsdl:fault>
|
2698
|
+
</wsdl:operation>
|
2699
|
+
<wsdl:operation name="removeActorsFromProjectRole">
|
2700
|
+
<wsdlsoap:operation soapAction=""/>
|
2701
|
+
<wsdl:input name="removeActorsFromProjectRoleRequest">
|
2702
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2703
|
+
</wsdl:input>
|
2704
|
+
<wsdl:output name="removeActorsFromProjectRoleResponse">
|
2705
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2706
|
+
</wsdl:output>
|
2707
|
+
<wsdl:fault name="RemoteException">
|
2708
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2709
|
+
</wsdl:fault>
|
2710
|
+
</wsdl:operation>
|
2711
|
+
<wsdl:operation name="addDefaultActorsToProjectRole">
|
2712
|
+
<wsdlsoap:operation soapAction=""/>
|
2713
|
+
<wsdl:input name="addDefaultActorsToProjectRoleRequest">
|
2714
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2715
|
+
</wsdl:input>
|
2716
|
+
<wsdl:output name="addDefaultActorsToProjectRoleResponse">
|
2717
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2718
|
+
</wsdl:output>
|
2719
|
+
<wsdl:fault name="RemoteException">
|
2720
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2721
|
+
</wsdl:fault>
|
2722
|
+
</wsdl:operation>
|
2723
|
+
<wsdl:operation name="removeDefaultActorsFromProjectRole">
|
2724
|
+
<wsdlsoap:operation soapAction=""/>
|
2725
|
+
<wsdl:input name="removeDefaultActorsFromProjectRoleRequest">
|
2726
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2727
|
+
</wsdl:input>
|
2728
|
+
<wsdl:output name="removeDefaultActorsFromProjectRoleResponse">
|
2729
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2730
|
+
</wsdl:output>
|
2731
|
+
<wsdl:fault name="RemoteException">
|
2732
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2733
|
+
</wsdl:fault>
|
2734
|
+
</wsdl:operation>
|
2735
|
+
<wsdl:operation name="getAssociatedNotificationSchemes">
|
2736
|
+
<wsdlsoap:operation soapAction=""/>
|
2737
|
+
<wsdl:input name="getAssociatedNotificationSchemesRequest">
|
2738
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2739
|
+
</wsdl:input>
|
2740
|
+
<wsdl:output name="getAssociatedNotificationSchemesResponse">
|
2741
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2742
|
+
</wsdl:output>
|
2743
|
+
<wsdl:fault name="RemoteException">
|
2744
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2745
|
+
</wsdl:fault>
|
2746
|
+
</wsdl:operation>
|
2747
|
+
<wsdl:operation name="getAssociatedPermissionSchemes">
|
2748
|
+
<wsdlsoap:operation soapAction=""/>
|
2749
|
+
<wsdl:input name="getAssociatedPermissionSchemesRequest">
|
2750
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2751
|
+
</wsdl:input>
|
2752
|
+
<wsdl:output name="getAssociatedPermissionSchemesResponse">
|
2753
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2754
|
+
</wsdl:output>
|
2755
|
+
<wsdl:fault name="RemoteException">
|
2756
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2757
|
+
</wsdl:fault>
|
2758
|
+
</wsdl:operation>
|
2759
|
+
<wsdl:operation name="deleteProject">
|
2760
|
+
<wsdlsoap:operation soapAction=""/>
|
2761
|
+
<wsdl:input name="deleteProjectRequest">
|
2762
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2763
|
+
</wsdl:input>
|
2764
|
+
<wsdl:output name="deleteProjectResponse">
|
2765
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2766
|
+
</wsdl:output>
|
2767
|
+
<wsdl:fault name="RemotePermissionException">
|
2768
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2769
|
+
</wsdl:fault>
|
2770
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2771
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2772
|
+
</wsdl:fault>
|
2773
|
+
<wsdl:fault name="RemoteException">
|
2774
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2775
|
+
</wsdl:fault>
|
2776
|
+
</wsdl:operation>
|
2777
|
+
<wsdl:operation name="getProjectById">
|
2778
|
+
<wsdlsoap:operation soapAction=""/>
|
2779
|
+
<wsdl:input name="getProjectByIdRequest">
|
2780
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2781
|
+
</wsdl:input>
|
2782
|
+
<wsdl:output name="getProjectByIdResponse">
|
2783
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2784
|
+
</wsdl:output>
|
2785
|
+
<wsdl:fault name="RemotePermissionException">
|
2786
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2787
|
+
</wsdl:fault>
|
2788
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2789
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2790
|
+
</wsdl:fault>
|
2791
|
+
<wsdl:fault name="RemoteException">
|
2792
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2793
|
+
</wsdl:fault>
|
2794
|
+
</wsdl:operation>
|
2795
|
+
<wsdl:operation name="getVersions">
|
2796
|
+
<wsdlsoap:operation soapAction=""/>
|
2797
|
+
<wsdl:input name="getVersionsRequest">
|
2798
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2799
|
+
</wsdl:input>
|
2800
|
+
<wsdl:output name="getVersionsResponse">
|
2801
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2802
|
+
</wsdl:output>
|
2803
|
+
<wsdl:fault name="RemotePermissionException">
|
2804
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2805
|
+
</wsdl:fault>
|
2806
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2807
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2808
|
+
</wsdl:fault>
|
2809
|
+
<wsdl:fault name="RemoteException">
|
2810
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2811
|
+
</wsdl:fault>
|
2812
|
+
</wsdl:operation>
|
2813
|
+
<wsdl:operation name="getComments">
|
2814
|
+
<wsdlsoap:operation soapAction=""/>
|
2815
|
+
<wsdl:input name="getCommentsRequest">
|
2816
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2817
|
+
</wsdl:input>
|
2818
|
+
<wsdl:output name="getCommentsResponse">
|
2819
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2820
|
+
</wsdl:output>
|
2821
|
+
<wsdl:fault name="RemotePermissionException">
|
2822
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2823
|
+
</wsdl:fault>
|
2824
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2825
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2826
|
+
</wsdl:fault>
|
2827
|
+
<wsdl:fault name="RemoteException">
|
2828
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2829
|
+
</wsdl:fault>
|
2830
|
+
</wsdl:operation>
|
2831
|
+
<wsdl:operation name="getFavouriteFilters">
|
2832
|
+
<wsdlsoap:operation soapAction=""/>
|
2833
|
+
<wsdl:input name="getFavouriteFiltersRequest">
|
2834
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2835
|
+
</wsdl:input>
|
2836
|
+
<wsdl:output name="getFavouriteFiltersResponse">
|
2837
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2838
|
+
</wsdl:output>
|
2839
|
+
<wsdl:fault name="RemotePermissionException">
|
2840
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2841
|
+
</wsdl:fault>
|
2842
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2843
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2844
|
+
</wsdl:fault>
|
2845
|
+
<wsdl:fault name="RemoteException">
|
2846
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2847
|
+
</wsdl:fault>
|
2848
|
+
</wsdl:operation>
|
2849
|
+
<wsdl:operation name="releaseVersion">
|
2850
|
+
<wsdlsoap:operation soapAction=""/>
|
2851
|
+
<wsdl:input name="releaseVersionRequest">
|
2852
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2853
|
+
</wsdl:input>
|
2854
|
+
<wsdl:output name="releaseVersionResponse">
|
2855
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2856
|
+
</wsdl:output>
|
2857
|
+
<wsdl:fault name="RemoteException">
|
2858
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2859
|
+
</wsdl:fault>
|
2860
|
+
</wsdl:operation>
|
2861
|
+
<wsdl:operation name="archiveVersion">
|
2862
|
+
<wsdlsoap:operation soapAction=""/>
|
2863
|
+
<wsdl:input name="archiveVersionRequest">
|
2864
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2865
|
+
</wsdl:input>
|
2866
|
+
<wsdl:output name="archiveVersionResponse">
|
2867
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2868
|
+
</wsdl:output>
|
2869
|
+
<wsdl:fault name="RemoteException">
|
2870
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2871
|
+
</wsdl:fault>
|
2872
|
+
</wsdl:operation>
|
2873
|
+
<wsdl:operation name="getFieldsForCreate">
|
2874
|
+
<wsdlsoap:operation soapAction=""/>
|
2875
|
+
<wsdl:input name="getFieldsForCreateRequest">
|
2876
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2877
|
+
</wsdl:input>
|
2878
|
+
<wsdl:output name="getFieldsForCreateResponse">
|
2879
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2880
|
+
</wsdl:output>
|
2881
|
+
<wsdl:fault name="RemoteException">
|
2882
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2883
|
+
</wsdl:fault>
|
2884
|
+
</wsdl:operation>
|
2885
|
+
<wsdl:operation name="getFieldsForEdit">
|
2886
|
+
<wsdlsoap:operation soapAction=""/>
|
2887
|
+
<wsdl:input name="getFieldsForEditRequest">
|
2888
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2889
|
+
</wsdl:input>
|
2890
|
+
<wsdl:output name="getFieldsForEditResponse">
|
2891
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2892
|
+
</wsdl:output>
|
2893
|
+
<wsdl:fault name="RemoteException">
|
2894
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2895
|
+
</wsdl:fault>
|
2896
|
+
</wsdl:operation>
|
2897
|
+
<wsdl:operation name="getSubTaskIssueTypesForProject">
|
2898
|
+
<wsdlsoap:operation soapAction=""/>
|
2899
|
+
<wsdl:input name="getSubTaskIssueTypesForProjectRequest">
|
2900
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2901
|
+
</wsdl:input>
|
2902
|
+
<wsdl:output name="getSubTaskIssueTypesForProjectResponse">
|
2903
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2904
|
+
</wsdl:output>
|
2905
|
+
<wsdl:fault name="RemotePermissionException">
|
2906
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2907
|
+
</wsdl:fault>
|
2908
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2909
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2910
|
+
</wsdl:fault>
|
2911
|
+
</wsdl:operation>
|
2912
|
+
<wsdl:operation name="getCustomFields">
|
2913
|
+
<wsdlsoap:operation soapAction=""/>
|
2914
|
+
<wsdl:input name="getCustomFieldsRequest">
|
2915
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2916
|
+
</wsdl:input>
|
2917
|
+
<wsdl:output name="getCustomFieldsResponse">
|
2918
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2919
|
+
</wsdl:output>
|
2920
|
+
<wsdl:fault name="RemoteException">
|
2921
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2922
|
+
</wsdl:fault>
|
2923
|
+
</wsdl:operation>
|
2924
|
+
<wsdl:operation name="logout">
|
2925
|
+
<wsdlsoap:operation soapAction=""/>
|
2926
|
+
<wsdl:input name="logoutRequest">
|
2927
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2928
|
+
</wsdl:input>
|
2929
|
+
<wsdl:output name="logoutResponse">
|
2930
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2931
|
+
</wsdl:output>
|
2932
|
+
</wsdl:operation>
|
2933
|
+
<wsdl:operation name="editComment">
|
2934
|
+
<wsdlsoap:operation soapAction=""/>
|
2935
|
+
<wsdl:input name="editCommentRequest">
|
2936
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2937
|
+
</wsdl:input>
|
2938
|
+
<wsdl:output name="editCommentResponse">
|
2939
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2940
|
+
</wsdl:output>
|
2941
|
+
<wsdl:fault name="RemoteException">
|
2942
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2943
|
+
</wsdl:fault>
|
2944
|
+
</wsdl:operation>
|
2945
|
+
<wsdl:operation name="login">
|
2946
|
+
<wsdlsoap:operation soapAction=""/>
|
2947
|
+
<wsdl:input name="loginRequest">
|
2948
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2949
|
+
</wsdl:input>
|
2950
|
+
<wsdl:output name="loginResponse">
|
2951
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2952
|
+
</wsdl:output>
|
2953
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
2954
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2955
|
+
</wsdl:fault>
|
2956
|
+
<wsdl:fault name="RemoteException">
|
2957
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2958
|
+
</wsdl:fault>
|
2959
|
+
</wsdl:operation>
|
2960
|
+
<wsdl:operation name="getProjectWithSchemesById">
|
2961
|
+
<wsdlsoap:operation soapAction=""/>
|
2962
|
+
<wsdl:input name="getProjectWithSchemesByIdRequest">
|
2963
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2964
|
+
</wsdl:input>
|
2965
|
+
<wsdl:output name="getProjectWithSchemesByIdResponse">
|
2966
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2967
|
+
</wsdl:output>
|
2968
|
+
<wsdl:fault name="RemoteException">
|
2969
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2970
|
+
</wsdl:fault>
|
2971
|
+
</wsdl:operation>
|
2972
|
+
<wsdl:operation name="getSecurityLevels">
|
2973
|
+
<wsdlsoap:operation soapAction=""/>
|
2974
|
+
<wsdl:input name="getSecurityLevelsRequest">
|
2975
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2976
|
+
</wsdl:input>
|
2977
|
+
<wsdl:output name="getSecurityLevelsResponse">
|
2978
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2979
|
+
</wsdl:output>
|
2980
|
+
<wsdl:fault name="RemotePermissionException">
|
2981
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2982
|
+
</wsdl:fault>
|
2983
|
+
<wsdl:fault name="RemoteException">
|
2984
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2985
|
+
</wsdl:fault>
|
2986
|
+
</wsdl:operation>
|
2987
|
+
<wsdl:operation name="getProjectAvatars">
|
2988
|
+
<wsdlsoap:operation soapAction=""/>
|
2989
|
+
<wsdl:input name="getProjectAvatarsRequest">
|
2990
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
2991
|
+
</wsdl:input>
|
2992
|
+
<wsdl:output name="getProjectAvatarsResponse">
|
2993
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2994
|
+
</wsdl:output>
|
2995
|
+
<wsdl:fault name="RemotePermissionException">
|
2996
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
2997
|
+
</wsdl:fault>
|
2998
|
+
<wsdl:fault name="RemoteException">
|
2999
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3000
|
+
</wsdl:fault>
|
3001
|
+
</wsdl:operation>
|
3002
|
+
<wsdl:operation name="setProjectAvatar">
|
3003
|
+
<wsdlsoap:operation soapAction=""/>
|
3004
|
+
<wsdl:input name="setProjectAvatarRequest">
|
3005
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3006
|
+
</wsdl:input>
|
3007
|
+
<wsdl:output name="setProjectAvatarResponse">
|
3008
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3009
|
+
</wsdl:output>
|
3010
|
+
<wsdl:fault name="RemotePermissionException">
|
3011
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3012
|
+
</wsdl:fault>
|
3013
|
+
<wsdl:fault name="RemoteException">
|
3014
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3015
|
+
</wsdl:fault>
|
3016
|
+
</wsdl:operation>
|
3017
|
+
<wsdl:operation name="getProjectAvatar">
|
3018
|
+
<wsdlsoap:operation soapAction=""/>
|
3019
|
+
<wsdl:input name="getProjectAvatarRequest">
|
3020
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3021
|
+
</wsdl:input>
|
3022
|
+
<wsdl:output name="getProjectAvatarResponse">
|
3023
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3024
|
+
</wsdl:output>
|
3025
|
+
<wsdl:fault name="RemotePermissionException">
|
3026
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3027
|
+
</wsdl:fault>
|
3028
|
+
<wsdl:fault name="RemoteException">
|
3029
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3030
|
+
</wsdl:fault>
|
3031
|
+
</wsdl:operation>
|
3032
|
+
<wsdl:operation name="deleteProjectAvatar">
|
3033
|
+
<wsdlsoap:operation soapAction=""/>
|
3034
|
+
<wsdl:input name="deleteProjectAvatarRequest">
|
3035
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3036
|
+
</wsdl:input>
|
3037
|
+
<wsdl:output name="deleteProjectAvatarResponse">
|
3038
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3039
|
+
</wsdl:output>
|
3040
|
+
<wsdl:fault name="RemoteException">
|
3041
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3042
|
+
</wsdl:fault>
|
3043
|
+
</wsdl:operation>
|
3044
|
+
<wsdl:operation name="getNotificationSchemes">
|
3045
|
+
<wsdlsoap:operation soapAction=""/>
|
3046
|
+
<wsdl:input name="getNotificationSchemesRequest">
|
3047
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3048
|
+
</wsdl:input>
|
3049
|
+
<wsdl:output name="getNotificationSchemesResponse">
|
3050
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3051
|
+
</wsdl:output>
|
3052
|
+
<wsdl:fault name="RemotePermissionException">
|
3053
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3054
|
+
</wsdl:fault>
|
3055
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3056
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3057
|
+
</wsdl:fault>
|
3058
|
+
<wsdl:fault name="RemoteException">
|
3059
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3060
|
+
</wsdl:fault>
|
3061
|
+
</wsdl:operation>
|
3062
|
+
<wsdl:operation name="getPermissionSchemes">
|
3063
|
+
<wsdlsoap:operation soapAction=""/>
|
3064
|
+
<wsdl:input name="getPermissionSchemesRequest">
|
3065
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3066
|
+
</wsdl:input>
|
3067
|
+
<wsdl:output name="getPermissionSchemesResponse">
|
3068
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3069
|
+
</wsdl:output>
|
3070
|
+
<wsdl:fault name="RemotePermissionException">
|
3071
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3072
|
+
</wsdl:fault>
|
3073
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3074
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3075
|
+
</wsdl:fault>
|
3076
|
+
<wsdl:fault name="RemoteException">
|
3077
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3078
|
+
</wsdl:fault>
|
3079
|
+
</wsdl:operation>
|
3080
|
+
<wsdl:operation name="createPermissionScheme">
|
3081
|
+
<wsdlsoap:operation soapAction=""/>
|
3082
|
+
<wsdl:input name="createPermissionSchemeRequest">
|
3083
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3084
|
+
</wsdl:input>
|
3085
|
+
<wsdl:output name="createPermissionSchemeResponse">
|
3086
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3087
|
+
</wsdl:output>
|
3088
|
+
<wsdl:fault name="RemoteValidationException">
|
3089
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3090
|
+
</wsdl:fault>
|
3091
|
+
<wsdl:fault name="RemotePermissionException">
|
3092
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3093
|
+
</wsdl:fault>
|
3094
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3095
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3096
|
+
</wsdl:fault>
|
3097
|
+
<wsdl:fault name="RemoteException">
|
3098
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3099
|
+
</wsdl:fault>
|
3100
|
+
</wsdl:operation>
|
3101
|
+
<wsdl:operation name="deletePermissionScheme">
|
3102
|
+
<wsdlsoap:operation soapAction=""/>
|
3103
|
+
<wsdl:input name="deletePermissionSchemeRequest">
|
3104
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3105
|
+
</wsdl:input>
|
3106
|
+
<wsdl:output name="deletePermissionSchemeResponse">
|
3107
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3108
|
+
</wsdl:output>
|
3109
|
+
<wsdl:fault name="RemoteValidationException">
|
3110
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3111
|
+
</wsdl:fault>
|
3112
|
+
<wsdl:fault name="RemotePermissionException">
|
3113
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3114
|
+
</wsdl:fault>
|
3115
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3116
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3117
|
+
</wsdl:fault>
|
3118
|
+
<wsdl:fault name="RemoteException">
|
3119
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3120
|
+
</wsdl:fault>
|
3121
|
+
</wsdl:operation>
|
3122
|
+
<wsdl:operation name="addPermissionTo">
|
3123
|
+
<wsdlsoap:operation soapAction=""/>
|
3124
|
+
<wsdl:input name="addPermissionToRequest">
|
3125
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3126
|
+
</wsdl:input>
|
3127
|
+
<wsdl:output name="addPermissionToResponse">
|
3128
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3129
|
+
</wsdl:output>
|
3130
|
+
<wsdl:fault name="RemoteValidationException">
|
3131
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3132
|
+
</wsdl:fault>
|
3133
|
+
<wsdl:fault name="RemotePermissionException">
|
3134
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3135
|
+
</wsdl:fault>
|
3136
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3137
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3138
|
+
</wsdl:fault>
|
3139
|
+
<wsdl:fault name="RemoteException">
|
3140
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3141
|
+
</wsdl:fault>
|
3142
|
+
</wsdl:operation>
|
3143
|
+
<wsdl:operation name="deletePermissionFrom">
|
3144
|
+
<wsdlsoap:operation soapAction=""/>
|
3145
|
+
<wsdl:input name="deletePermissionFromRequest">
|
3146
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3147
|
+
</wsdl:input>
|
3148
|
+
<wsdl:output name="deletePermissionFromResponse">
|
3149
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3150
|
+
</wsdl:output>
|
3151
|
+
<wsdl:fault name="RemoteValidationException">
|
3152
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3153
|
+
</wsdl:fault>
|
3154
|
+
<wsdl:fault name="RemotePermissionException">
|
3155
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3156
|
+
</wsdl:fault>
|
3157
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3158
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3159
|
+
</wsdl:fault>
|
3160
|
+
<wsdl:fault name="RemoteException">
|
3161
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3162
|
+
</wsdl:fault>
|
3163
|
+
</wsdl:operation>
|
3164
|
+
<wsdl:operation name="getAllPermissions">
|
3165
|
+
<wsdlsoap:operation soapAction=""/>
|
3166
|
+
<wsdl:input name="getAllPermissionsRequest">
|
3167
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3168
|
+
</wsdl:input>
|
3169
|
+
<wsdl:output name="getAllPermissionsResponse">
|
3170
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3171
|
+
</wsdl:output>
|
3172
|
+
<wsdl:fault name="RemotePermissionException">
|
3173
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3174
|
+
</wsdl:fault>
|
3175
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3176
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3177
|
+
</wsdl:fault>
|
3178
|
+
<wsdl:fault name="RemoteException">
|
3179
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3180
|
+
</wsdl:fault>
|
3181
|
+
</wsdl:operation>
|
3182
|
+
<wsdl:operation name="createIssueWithSecurityLevel">
|
3183
|
+
<wsdlsoap:operation soapAction=""/>
|
3184
|
+
<wsdl:input name="createIssueWithSecurityLevelRequest">
|
3185
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3186
|
+
</wsdl:input>
|
3187
|
+
<wsdl:output name="createIssueWithSecurityLevelResponse">
|
3188
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3189
|
+
</wsdl:output>
|
3190
|
+
<wsdl:fault name="RemoteValidationException">
|
3191
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3192
|
+
</wsdl:fault>
|
3193
|
+
<wsdl:fault name="RemotePermissionException">
|
3194
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3195
|
+
</wsdl:fault>
|
3196
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3197
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3198
|
+
</wsdl:fault>
|
3199
|
+
<wsdl:fault name="RemoteException">
|
3200
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3201
|
+
</wsdl:fault>
|
3202
|
+
</wsdl:operation>
|
3203
|
+
<wsdl:operation name="hasPermissionToEditComment">
|
3204
|
+
<wsdlsoap:operation soapAction=""/>
|
3205
|
+
<wsdl:input name="hasPermissionToEditCommentRequest">
|
3206
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3207
|
+
</wsdl:input>
|
3208
|
+
<wsdl:output name="hasPermissionToEditCommentResponse">
|
3209
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3210
|
+
</wsdl:output>
|
3211
|
+
<wsdl:fault name="RemoteException">
|
3212
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3213
|
+
</wsdl:fault>
|
3214
|
+
</wsdl:operation>
|
3215
|
+
<wsdl:operation name="getFieldsForAction">
|
3216
|
+
<wsdlsoap:operation soapAction=""/>
|
3217
|
+
<wsdl:input name="getFieldsForActionRequest">
|
3218
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3219
|
+
</wsdl:input>
|
3220
|
+
<wsdl:output name="getFieldsForActionResponse">
|
3221
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3222
|
+
</wsdl:output>
|
3223
|
+
<wsdl:fault name="RemoteException">
|
3224
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3225
|
+
</wsdl:fault>
|
3226
|
+
</wsdl:operation>
|
3227
|
+
<wsdl:operation name="progressWorkflowAction">
|
3228
|
+
<wsdlsoap:operation soapAction=""/>
|
3229
|
+
<wsdl:input name="progressWorkflowActionRequest">
|
3230
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3231
|
+
</wsdl:input>
|
3232
|
+
<wsdl:output name="progressWorkflowActionResponse">
|
3233
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3234
|
+
</wsdl:output>
|
3235
|
+
<wsdl:fault name="RemoteException">
|
3236
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3237
|
+
</wsdl:fault>
|
3238
|
+
</wsdl:operation>
|
3239
|
+
<wsdl:operation name="getIssueById">
|
3240
|
+
<wsdlsoap:operation soapAction=""/>
|
3241
|
+
<wsdl:input name="getIssueByIdRequest">
|
3242
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3243
|
+
</wsdl:input>
|
3244
|
+
<wsdl:output name="getIssueByIdResponse">
|
3245
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3246
|
+
</wsdl:output>
|
3247
|
+
<wsdl:fault name="RemotePermissionException">
|
3248
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3249
|
+
</wsdl:fault>
|
3250
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3251
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3252
|
+
</wsdl:fault>
|
3253
|
+
<wsdl:fault name="RemoteException">
|
3254
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3255
|
+
</wsdl:fault>
|
3256
|
+
</wsdl:operation>
|
3257
|
+
<wsdl:operation name="addAttachmentsToIssue">
|
3258
|
+
<wsdlsoap:operation soapAction=""/>
|
3259
|
+
<wsdl:input name="addAttachmentsToIssueRequest">
|
3260
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3261
|
+
</wsdl:input>
|
3262
|
+
<wsdl:output name="addAttachmentsToIssueResponse">
|
3263
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3264
|
+
</wsdl:output>
|
3265
|
+
<wsdl:fault name="RemoteValidationException">
|
3266
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3267
|
+
</wsdl:fault>
|
3268
|
+
<wsdl:fault name="RemotePermissionException">
|
3269
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3270
|
+
</wsdl:fault>
|
3271
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3272
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3273
|
+
</wsdl:fault>
|
3274
|
+
<wsdl:fault name="RemoteException">
|
3275
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3276
|
+
</wsdl:fault>
|
3277
|
+
</wsdl:operation>
|
3278
|
+
<wsdl:operation name="getAttachmentsFromIssue">
|
3279
|
+
<wsdlsoap:operation soapAction=""/>
|
3280
|
+
<wsdl:input name="getAttachmentsFromIssueRequest">
|
3281
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3282
|
+
</wsdl:input>
|
3283
|
+
<wsdl:output name="getAttachmentsFromIssueResponse">
|
3284
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3285
|
+
</wsdl:output>
|
3286
|
+
<wsdl:fault name="RemoteValidationException">
|
3287
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3288
|
+
</wsdl:fault>
|
3289
|
+
<wsdl:fault name="RemotePermissionException">
|
3290
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3291
|
+
</wsdl:fault>
|
3292
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3293
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3294
|
+
</wsdl:fault>
|
3295
|
+
<wsdl:fault name="RemoteException">
|
3296
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3297
|
+
</wsdl:fault>
|
3298
|
+
</wsdl:operation>
|
3299
|
+
<wsdl:operation name="addWorklogWithNewRemainingEstimate">
|
3300
|
+
<wsdlsoap:operation soapAction=""/>
|
3301
|
+
<wsdl:input name="addWorklogWithNewRemainingEstimateRequest">
|
3302
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3303
|
+
</wsdl:input>
|
3304
|
+
<wsdl:output name="addWorklogWithNewRemainingEstimateResponse">
|
3305
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3306
|
+
</wsdl:output>
|
3307
|
+
<wsdl:fault name="RemoteValidationException">
|
3308
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3309
|
+
</wsdl:fault>
|
3310
|
+
<wsdl:fault name="RemotePermissionException">
|
3311
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3312
|
+
</wsdl:fault>
|
3313
|
+
<wsdl:fault name="RemoteException">
|
3314
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3315
|
+
</wsdl:fault>
|
3316
|
+
</wsdl:operation>
|
3317
|
+
<wsdl:operation name="addWorklogAndAutoAdjustRemainingEstimate">
|
3318
|
+
<wsdlsoap:operation soapAction=""/>
|
3319
|
+
<wsdl:input name="addWorklogAndAutoAdjustRemainingEstimateRequest">
|
3320
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3321
|
+
</wsdl:input>
|
3322
|
+
<wsdl:output name="addWorklogAndAutoAdjustRemainingEstimateResponse">
|
3323
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3324
|
+
</wsdl:output>
|
3325
|
+
<wsdl:fault name="RemoteValidationException">
|
3326
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3327
|
+
</wsdl:fault>
|
3328
|
+
<wsdl:fault name="RemotePermissionException">
|
3329
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3330
|
+
</wsdl:fault>
|
3331
|
+
<wsdl:fault name="RemoteException">
|
3332
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3333
|
+
</wsdl:fault>
|
3334
|
+
</wsdl:operation>
|
3335
|
+
<wsdl:operation name="addWorklogAndRetainRemainingEstimate">
|
3336
|
+
<wsdlsoap:operation soapAction=""/>
|
3337
|
+
<wsdl:input name="addWorklogAndRetainRemainingEstimateRequest">
|
3338
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3339
|
+
</wsdl:input>
|
3340
|
+
<wsdl:output name="addWorklogAndRetainRemainingEstimateResponse">
|
3341
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3342
|
+
</wsdl:output>
|
3343
|
+
<wsdl:fault name="RemoteValidationException">
|
3344
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3345
|
+
</wsdl:fault>
|
3346
|
+
<wsdl:fault name="RemotePermissionException">
|
3347
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3348
|
+
</wsdl:fault>
|
3349
|
+
<wsdl:fault name="RemoteException">
|
3350
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3351
|
+
</wsdl:fault>
|
3352
|
+
</wsdl:operation>
|
3353
|
+
<wsdl:operation name="deleteWorklogAndAutoAdjustRemainingEstimate">
|
3354
|
+
<wsdlsoap:operation soapAction=""/>
|
3355
|
+
<wsdl:input name="deleteWorklogAndAutoAdjustRemainingEstimateRequest">
|
3356
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3357
|
+
</wsdl:input>
|
3358
|
+
<wsdl:output name="deleteWorklogAndAutoAdjustRemainingEstimateResponse">
|
3359
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3360
|
+
</wsdl:output>
|
3361
|
+
<wsdl:fault name="RemoteValidationException">
|
3362
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3363
|
+
</wsdl:fault>
|
3364
|
+
<wsdl:fault name="RemotePermissionException">
|
3365
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3366
|
+
</wsdl:fault>
|
3367
|
+
<wsdl:fault name="RemoteException">
|
3368
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3369
|
+
</wsdl:fault>
|
3370
|
+
</wsdl:operation>
|
3371
|
+
<wsdl:operation name="deleteWorklogAndRetainRemainingEstimate">
|
3372
|
+
<wsdlsoap:operation soapAction=""/>
|
3373
|
+
<wsdl:input name="deleteWorklogAndRetainRemainingEstimateRequest">
|
3374
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3375
|
+
</wsdl:input>
|
3376
|
+
<wsdl:output name="deleteWorklogAndRetainRemainingEstimateResponse">
|
3377
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3378
|
+
</wsdl:output>
|
3379
|
+
<wsdl:fault name="RemoteValidationException">
|
3380
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3381
|
+
</wsdl:fault>
|
3382
|
+
<wsdl:fault name="RemotePermissionException">
|
3383
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3384
|
+
</wsdl:fault>
|
3385
|
+
<wsdl:fault name="RemoteException">
|
3386
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3387
|
+
</wsdl:fault>
|
3388
|
+
</wsdl:operation>
|
3389
|
+
<wsdl:operation name="deleteWorklogWithNewRemainingEstimate">
|
3390
|
+
<wsdlsoap:operation soapAction=""/>
|
3391
|
+
<wsdl:input name="deleteWorklogWithNewRemainingEstimateRequest">
|
3392
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3393
|
+
</wsdl:input>
|
3394
|
+
<wsdl:output name="deleteWorklogWithNewRemainingEstimateResponse">
|
3395
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3396
|
+
</wsdl:output>
|
3397
|
+
<wsdl:fault name="RemoteValidationException">
|
3398
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3399
|
+
</wsdl:fault>
|
3400
|
+
<wsdl:fault name="RemotePermissionException">
|
3401
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3402
|
+
</wsdl:fault>
|
3403
|
+
<wsdl:fault name="RemoteException">
|
3404
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3405
|
+
</wsdl:fault>
|
3406
|
+
</wsdl:operation>
|
3407
|
+
<wsdl:operation name="updateWorklogAndAutoAdjustRemainingEstimate">
|
3408
|
+
<wsdlsoap:operation soapAction=""/>
|
3409
|
+
<wsdl:input name="updateWorklogAndAutoAdjustRemainingEstimateRequest">
|
3410
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3411
|
+
</wsdl:input>
|
3412
|
+
<wsdl:output name="updateWorklogAndAutoAdjustRemainingEstimateResponse">
|
3413
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3414
|
+
</wsdl:output>
|
3415
|
+
<wsdl:fault name="RemoteValidationException">
|
3416
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3417
|
+
</wsdl:fault>
|
3418
|
+
<wsdl:fault name="RemotePermissionException">
|
3419
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3420
|
+
</wsdl:fault>
|
3421
|
+
<wsdl:fault name="RemoteException">
|
3422
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3423
|
+
</wsdl:fault>
|
3424
|
+
</wsdl:operation>
|
3425
|
+
<wsdl:operation name="updateWorklogAndRetainRemainingEstimate">
|
3426
|
+
<wsdlsoap:operation soapAction=""/>
|
3427
|
+
<wsdl:input name="updateWorklogAndRetainRemainingEstimateRequest">
|
3428
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3429
|
+
</wsdl:input>
|
3430
|
+
<wsdl:output name="updateWorklogAndRetainRemainingEstimateResponse">
|
3431
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3432
|
+
</wsdl:output>
|
3433
|
+
<wsdl:fault name="RemoteValidationException">
|
3434
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3435
|
+
</wsdl:fault>
|
3436
|
+
<wsdl:fault name="RemotePermissionException">
|
3437
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3438
|
+
</wsdl:fault>
|
3439
|
+
<wsdl:fault name="RemoteException">
|
3440
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3441
|
+
</wsdl:fault>
|
3442
|
+
</wsdl:operation>
|
3443
|
+
<wsdl:operation name="updateWorklogWithNewRemainingEstimate">
|
3444
|
+
<wsdlsoap:operation soapAction=""/>
|
3445
|
+
<wsdl:input name="updateWorklogWithNewRemainingEstimateRequest">
|
3446
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3447
|
+
</wsdl:input>
|
3448
|
+
<wsdl:output name="updateWorklogWithNewRemainingEstimateResponse">
|
3449
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3450
|
+
</wsdl:output>
|
3451
|
+
<wsdl:fault name="RemoteValidationException">
|
3452
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3453
|
+
</wsdl:fault>
|
3454
|
+
<wsdl:fault name="RemotePermissionException">
|
3455
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3456
|
+
</wsdl:fault>
|
3457
|
+
<wsdl:fault name="RemoteException">
|
3458
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3459
|
+
</wsdl:fault>
|
3460
|
+
</wsdl:operation>
|
3461
|
+
<wsdl:operation name="getWorklogs">
|
3462
|
+
<wsdlsoap:operation soapAction=""/>
|
3463
|
+
<wsdl:input name="getWorklogsRequest">
|
3464
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3465
|
+
</wsdl:input>
|
3466
|
+
<wsdl:output name="getWorklogsResponse">
|
3467
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3468
|
+
</wsdl:output>
|
3469
|
+
<wsdl:fault name="RemoteValidationException">
|
3470
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3471
|
+
</wsdl:fault>
|
3472
|
+
<wsdl:fault name="RemotePermissionException">
|
3473
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3474
|
+
</wsdl:fault>
|
3475
|
+
<wsdl:fault name="RemoteException">
|
3476
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3477
|
+
</wsdl:fault>
|
3478
|
+
</wsdl:operation>
|
3479
|
+
<wsdl:operation name="hasPermissionToCreateWorklog">
|
3480
|
+
<wsdlsoap:operation soapAction=""/>
|
3481
|
+
<wsdl:input name="hasPermissionToCreateWorklogRequest">
|
3482
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3483
|
+
</wsdl:input>
|
3484
|
+
<wsdl:output name="hasPermissionToCreateWorklogResponse">
|
3485
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3486
|
+
</wsdl:output>
|
3487
|
+
<wsdl:fault name="RemoteValidationException">
|
3488
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3489
|
+
</wsdl:fault>
|
3490
|
+
<wsdl:fault name="RemoteException">
|
3491
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3492
|
+
</wsdl:fault>
|
3493
|
+
</wsdl:operation>
|
3494
|
+
<wsdl:operation name="hasPermissionToDeleteWorklog">
|
3495
|
+
<wsdlsoap:operation soapAction=""/>
|
3496
|
+
<wsdl:input name="hasPermissionToDeleteWorklogRequest">
|
3497
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3498
|
+
</wsdl:input>
|
3499
|
+
<wsdl:output name="hasPermissionToDeleteWorklogResponse">
|
3500
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3501
|
+
</wsdl:output>
|
3502
|
+
<wsdl:fault name="RemoteValidationException">
|
3503
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3504
|
+
</wsdl:fault>
|
3505
|
+
<wsdl:fault name="RemoteException">
|
3506
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3507
|
+
</wsdl:fault>
|
3508
|
+
</wsdl:operation>
|
3509
|
+
<wsdl:operation name="hasPermissionToUpdateWorklog">
|
3510
|
+
<wsdlsoap:operation soapAction=""/>
|
3511
|
+
<wsdl:input name="hasPermissionToUpdateWorklogRequest">
|
3512
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3513
|
+
</wsdl:input>
|
3514
|
+
<wsdl:output name="hasPermissionToUpdateWorklogResponse">
|
3515
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3516
|
+
</wsdl:output>
|
3517
|
+
<wsdl:fault name="RemoteValidationException">
|
3518
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3519
|
+
</wsdl:fault>
|
3520
|
+
<wsdl:fault name="RemoteException">
|
3521
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3522
|
+
</wsdl:fault>
|
3523
|
+
</wsdl:operation>
|
3524
|
+
<wsdl:operation name="getResolutionDateByKey">
|
3525
|
+
<wsdlsoap:operation soapAction=""/>
|
3526
|
+
<wsdl:input name="getResolutionDateByKeyRequest">
|
3527
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3528
|
+
</wsdl:input>
|
3529
|
+
<wsdl:output name="getResolutionDateByKeyResponse">
|
3530
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3531
|
+
</wsdl:output>
|
3532
|
+
<wsdl:fault name="RemotePermissionException">
|
3533
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3534
|
+
</wsdl:fault>
|
3535
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3536
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3537
|
+
</wsdl:fault>
|
3538
|
+
<wsdl:fault name="RemoteException">
|
3539
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3540
|
+
</wsdl:fault>
|
3541
|
+
</wsdl:operation>
|
3542
|
+
<wsdl:operation name="getResolutionDateById">
|
3543
|
+
<wsdlsoap:operation soapAction=""/>
|
3544
|
+
<wsdl:input name="getResolutionDateByIdRequest">
|
3545
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3546
|
+
</wsdl:input>
|
3547
|
+
<wsdl:output name="getResolutionDateByIdResponse">
|
3548
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3549
|
+
</wsdl:output>
|
3550
|
+
<wsdl:fault name="RemotePermissionException">
|
3551
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3552
|
+
</wsdl:fault>
|
3553
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3554
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3555
|
+
</wsdl:fault>
|
3556
|
+
<wsdl:fault name="RemoteException">
|
3557
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3558
|
+
</wsdl:fault>
|
3559
|
+
</wsdl:operation>
|
3560
|
+
<wsdl:operation name="getIssueCountForFilter">
|
3561
|
+
<wsdlsoap:operation soapAction=""/>
|
3562
|
+
<wsdl:input name="getIssueCountForFilterRequest">
|
3563
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3564
|
+
</wsdl:input>
|
3565
|
+
<wsdl:output name="getIssueCountForFilterResponse">
|
3566
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3567
|
+
</wsdl:output>
|
3568
|
+
<wsdl:fault name="RemoteException">
|
3569
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3570
|
+
</wsdl:fault>
|
3571
|
+
</wsdl:operation>
|
3572
|
+
<wsdl:operation name="getIssuesFromTextSearch">
|
3573
|
+
<wsdlsoap:operation soapAction=""/>
|
3574
|
+
<wsdl:input name="getIssuesFromTextSearchRequest">
|
3575
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3576
|
+
</wsdl:input>
|
3577
|
+
<wsdl:output name="getIssuesFromTextSearchResponse">
|
3578
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3579
|
+
</wsdl:output>
|
3580
|
+
<wsdl:fault name="RemoteException">
|
3581
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3582
|
+
</wsdl:fault>
|
3583
|
+
</wsdl:operation>
|
3584
|
+
<wsdl:operation name="getIssuesFromTextSearchWithProject">
|
3585
|
+
<wsdlsoap:operation soapAction=""/>
|
3586
|
+
<wsdl:input name="getIssuesFromTextSearchWithProjectRequest">
|
3587
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3588
|
+
</wsdl:input>
|
3589
|
+
<wsdl:output name="getIssuesFromTextSearchWithProjectResponse">
|
3590
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3591
|
+
</wsdl:output>
|
3592
|
+
<wsdl:fault name="RemoteException">
|
3593
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3594
|
+
</wsdl:fault>
|
3595
|
+
</wsdl:operation>
|
3596
|
+
<wsdl:operation name="getIssuesFromJqlSearch">
|
3597
|
+
<wsdlsoap:operation soapAction=""/>
|
3598
|
+
<wsdl:input name="getIssuesFromJqlSearchRequest">
|
3599
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3600
|
+
</wsdl:input>
|
3601
|
+
<wsdl:output name="getIssuesFromJqlSearchResponse">
|
3602
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3603
|
+
</wsdl:output>
|
3604
|
+
<wsdl:fault name="RemoteException">
|
3605
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3606
|
+
</wsdl:fault>
|
3607
|
+
</wsdl:operation>
|
3608
|
+
<wsdl:operation name="setUserPassword">
|
3609
|
+
<wsdlsoap:operation soapAction=""/>
|
3610
|
+
<wsdl:input name="setUserPasswordRequest">
|
3611
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3612
|
+
</wsdl:input>
|
3613
|
+
<wsdl:output name="setUserPasswordResponse">
|
3614
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3615
|
+
</wsdl:output>
|
3616
|
+
<wsdl:fault name="RemoteValidationException">
|
3617
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3618
|
+
</wsdl:fault>
|
3619
|
+
<wsdl:fault name="RemotePermissionException">
|
3620
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3621
|
+
</wsdl:fault>
|
3622
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3623
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3624
|
+
</wsdl:fault>
|
3625
|
+
<wsdl:fault name="RemoteException">
|
3626
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3627
|
+
</wsdl:fault>
|
3628
|
+
</wsdl:operation>
|
3629
|
+
<wsdl:operation name="deleteUser">
|
3630
|
+
<wsdlsoap:operation soapAction=""/>
|
3631
|
+
<wsdl:input name="deleteUserRequest">
|
3632
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3633
|
+
</wsdl:input>
|
3634
|
+
<wsdl:output name="deleteUserResponse">
|
3635
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3636
|
+
</wsdl:output>
|
3637
|
+
<wsdl:fault name="RemoteValidationException">
|
3638
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3639
|
+
</wsdl:fault>
|
3640
|
+
<wsdl:fault name="RemotePermissionException">
|
3641
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3642
|
+
</wsdl:fault>
|
3643
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3644
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3645
|
+
</wsdl:fault>
|
3646
|
+
<wsdl:fault name="RemoteException">
|
3647
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3648
|
+
</wsdl:fault>
|
3649
|
+
</wsdl:operation>
|
3650
|
+
<wsdl:operation name="deleteGroup">
|
3651
|
+
<wsdlsoap:operation soapAction=""/>
|
3652
|
+
<wsdl:input name="deleteGroupRequest">
|
3653
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3654
|
+
</wsdl:input>
|
3655
|
+
<wsdl:output name="deleteGroupResponse">
|
3656
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3657
|
+
</wsdl:output>
|
3658
|
+
<wsdl:fault name="RemoteValidationException">
|
3659
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3660
|
+
</wsdl:fault>
|
3661
|
+
<wsdl:fault name="RemotePermissionException">
|
3662
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3663
|
+
</wsdl:fault>
|
3664
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3665
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3666
|
+
</wsdl:fault>
|
3667
|
+
<wsdl:fault name="RemoteException">
|
3668
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3669
|
+
</wsdl:fault>
|
3670
|
+
</wsdl:operation>
|
3671
|
+
<wsdl:operation name="refreshCustomFields">
|
3672
|
+
<wsdlsoap:operation soapAction=""/>
|
3673
|
+
<wsdl:input name="refreshCustomFieldsRequest">
|
3674
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3675
|
+
</wsdl:input>
|
3676
|
+
<wsdl:output name="refreshCustomFieldsResponse">
|
3677
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3678
|
+
</wsdl:output>
|
3679
|
+
<wsdl:fault name="RemoteException">
|
3680
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3681
|
+
</wsdl:fault>
|
3682
|
+
</wsdl:operation>
|
3683
|
+
<wsdl:operation name="getProjectsNoSchemes">
|
3684
|
+
<wsdlsoap:operation soapAction=""/>
|
3685
|
+
<wsdl:input name="getProjectsNoSchemesRequest">
|
3686
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3687
|
+
</wsdl:input>
|
3688
|
+
<wsdl:output name="getProjectsNoSchemesResponse">
|
3689
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3690
|
+
</wsdl:output>
|
3691
|
+
<wsdl:fault name="RemotePermissionException">
|
3692
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3693
|
+
</wsdl:fault>
|
3694
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3695
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3696
|
+
</wsdl:fault>
|
3697
|
+
<wsdl:fault name="RemoteException">
|
3698
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3699
|
+
</wsdl:fault>
|
3700
|
+
</wsdl:operation>
|
3701
|
+
<wsdl:operation name="addVersion">
|
3702
|
+
<wsdlsoap:operation soapAction=""/>
|
3703
|
+
<wsdl:input name="addVersionRequest">
|
3704
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3705
|
+
</wsdl:input>
|
3706
|
+
<wsdl:output name="addVersionResponse">
|
3707
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3708
|
+
</wsdl:output>
|
3709
|
+
<wsdl:fault name="RemoteException">
|
3710
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3711
|
+
</wsdl:fault>
|
3712
|
+
</wsdl:operation>
|
3713
|
+
<wsdl:operation name="getSavedFilters">
|
3714
|
+
<wsdlsoap:operation soapAction=""/>
|
3715
|
+
<wsdl:input name="getSavedFiltersRequest">
|
3716
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3717
|
+
</wsdl:input>
|
3718
|
+
<wsdl:output name="getSavedFiltersResponse">
|
3719
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3720
|
+
</wsdl:output>
|
3721
|
+
<wsdl:fault name="RemotePermissionException">
|
3722
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3723
|
+
</wsdl:fault>
|
3724
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3725
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3726
|
+
</wsdl:fault>
|
3727
|
+
<wsdl:fault name="RemoteException">
|
3728
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3729
|
+
</wsdl:fault>
|
3730
|
+
</wsdl:operation>
|
3731
|
+
<wsdl:operation name="createIssueWithParent">
|
3732
|
+
<wsdlsoap:operation soapAction=""/>
|
3733
|
+
<wsdl:input name="createIssueWithParentRequest">
|
3734
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3735
|
+
</wsdl:input>
|
3736
|
+
<wsdl:output name="createIssueWithParentResponse">
|
3737
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3738
|
+
</wsdl:output>
|
3739
|
+
<wsdl:fault name="RemoteValidationException">
|
3740
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3741
|
+
</wsdl:fault>
|
3742
|
+
<wsdl:fault name="RemotePermissionException">
|
3743
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3744
|
+
</wsdl:fault>
|
3745
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3746
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3747
|
+
</wsdl:fault>
|
3748
|
+
<wsdl:fault name="RemoteException">
|
3749
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3750
|
+
</wsdl:fault>
|
3751
|
+
</wsdl:operation>
|
3752
|
+
<wsdl:operation name="createIssueWithParentWithSecurityLevel">
|
3753
|
+
<wsdlsoap:operation soapAction=""/>
|
3754
|
+
<wsdl:input name="createIssueWithParentWithSecurityLevelRequest">
|
3755
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3756
|
+
</wsdl:input>
|
3757
|
+
<wsdl:output name="createIssueWithParentWithSecurityLevelResponse">
|
3758
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3759
|
+
</wsdl:output>
|
3760
|
+
<wsdl:fault name="RemoteValidationException">
|
3761
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3762
|
+
</wsdl:fault>
|
3763
|
+
<wsdl:fault name="RemotePermissionException">
|
3764
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3765
|
+
</wsdl:fault>
|
3766
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3767
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3768
|
+
</wsdl:fault>
|
3769
|
+
<wsdl:fault name="RemoteException">
|
3770
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3771
|
+
</wsdl:fault>
|
3772
|
+
</wsdl:operation>
|
3773
|
+
<wsdl:operation name="addBase64EncodedAttachmentsToIssue">
|
3774
|
+
<wsdlsoap:operation soapAction=""/>
|
3775
|
+
<wsdl:input name="addBase64EncodedAttachmentsToIssueRequest">
|
3776
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3777
|
+
</wsdl:input>
|
3778
|
+
<wsdl:output name="addBase64EncodedAttachmentsToIssueResponse">
|
3779
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3780
|
+
</wsdl:output>
|
3781
|
+
<wsdl:fault name="RemoteValidationException">
|
3782
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3783
|
+
</wsdl:fault>
|
3784
|
+
<wsdl:fault name="RemotePermissionException">
|
3785
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3786
|
+
</wsdl:fault>
|
3787
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3788
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3789
|
+
</wsdl:fault>
|
3790
|
+
<wsdl:fault name="RemoteException">
|
3791
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3792
|
+
</wsdl:fault>
|
3793
|
+
</wsdl:operation>
|
3794
|
+
<wsdl:operation name="createProjectFromObject">
|
3795
|
+
<wsdlsoap:operation soapAction=""/>
|
3796
|
+
<wsdl:input name="createProjectFromObjectRequest">
|
3797
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3798
|
+
</wsdl:input>
|
3799
|
+
<wsdl:output name="createProjectFromObjectResponse">
|
3800
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3801
|
+
</wsdl:output>
|
3802
|
+
<wsdl:fault name="RemoteValidationException">
|
3803
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteValidationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3804
|
+
</wsdl:fault>
|
3805
|
+
<wsdl:fault name="RemotePermissionException">
|
3806
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3807
|
+
</wsdl:fault>
|
3808
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3809
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3810
|
+
</wsdl:fault>
|
3811
|
+
<wsdl:fault name="RemoteException">
|
3812
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3813
|
+
</wsdl:fault>
|
3814
|
+
</wsdl:operation>
|
3815
|
+
<wsdl:operation name="getSecuritySchemes">
|
3816
|
+
<wsdlsoap:operation soapAction=""/>
|
3817
|
+
<wsdl:input name="getSecuritySchemesRequest">
|
3818
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3819
|
+
</wsdl:input>
|
3820
|
+
<wsdl:output name="getSecuritySchemesResponse">
|
3821
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3822
|
+
</wsdl:output>
|
3823
|
+
<wsdl:fault name="RemotePermissionException">
|
3824
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3825
|
+
</wsdl:fault>
|
3826
|
+
<wsdl:fault name="RemoteAuthenticationException">
|
3827
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteAuthenticationException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3828
|
+
</wsdl:fault>
|
3829
|
+
<wsdl:fault name="RemoteException">
|
3830
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3831
|
+
</wsdl:fault>
|
3832
|
+
</wsdl:operation>
|
3833
|
+
<wsdl:operation name="getIssuesFromFilter">
|
3834
|
+
<wsdlsoap:operation soapAction=""/>
|
3835
|
+
<wsdl:input name="getIssuesFromFilterRequest">
|
3836
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3837
|
+
</wsdl:input>
|
3838
|
+
<wsdl:output name="getIssuesFromFilterResponse">
|
3839
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3840
|
+
</wsdl:output>
|
3841
|
+
<wsdl:fault name="RemoteException">
|
3842
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3843
|
+
</wsdl:fault>
|
3844
|
+
</wsdl:operation>
|
3845
|
+
<wsdl:operation name="getIssuesFromFilterWithLimit">
|
3846
|
+
<wsdlsoap:operation soapAction=""/>
|
3847
|
+
<wsdl:input name="getIssuesFromFilterWithLimitRequest">
|
3848
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3849
|
+
</wsdl:input>
|
3850
|
+
<wsdl:output name="getIssuesFromFilterWithLimitResponse">
|
3851
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3852
|
+
</wsdl:output>
|
3853
|
+
<wsdl:fault name="RemoteException">
|
3854
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3855
|
+
</wsdl:fault>
|
3856
|
+
</wsdl:operation>
|
3857
|
+
<wsdl:operation name="getIssuesFromTextSearchWithLimit">
|
3858
|
+
<wsdlsoap:operation soapAction=""/>
|
3859
|
+
<wsdl:input name="getIssuesFromTextSearchWithLimitRequest">
|
3860
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3861
|
+
</wsdl:input>
|
3862
|
+
<wsdl:output name="getIssuesFromTextSearchWithLimitResponse">
|
3863
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3864
|
+
</wsdl:output>
|
3865
|
+
<wsdl:fault name="RemoteException">
|
3866
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3867
|
+
</wsdl:fault>
|
3868
|
+
</wsdl:operation>
|
3869
|
+
<wsdl:operation name="setNewProjectAvatar">
|
3870
|
+
<wsdlsoap:operation soapAction=""/>
|
3871
|
+
<wsdl:input name="setNewProjectAvatarRequest">
|
3872
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.jira.atlassian.com" use="encoded"/>
|
3873
|
+
</wsdl:input>
|
3874
|
+
<wsdl:output name="setNewProjectAvatarResponse">
|
3875
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3876
|
+
</wsdl:output>
|
3877
|
+
<wsdl:fault name="RemotePermissionException">
|
3878
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemotePermissionException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3879
|
+
</wsdl:fault>
|
3880
|
+
<wsdl:fault name="RemoteException">
|
3881
|
+
<wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="RemoteException" namespace="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2" use="encoded"/>
|
3882
|
+
</wsdl:fault>
|
3883
|
+
</wsdl:operation>
|
3884
|
+
</wsdl:binding>
|
3885
|
+
<wsdl:service name="JiraSoapServiceService">
|
3886
|
+
<wsdl:port binding="impl:jirasoapservice-v2SoapBinding" name="jirasoapservice-v2">
|
3887
|
+
<wsdlsoap:address location="https://jira.atlassian.com/rpc/soap/jirasoapservice-v2"/>
|
3888
|
+
</wsdl:port>
|
3889
|
+
</wsdl:service>
|
3890
|
+
</wsdl:definitions>
|