svn-hook-tools 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +14 -0
- data/README +12 -0
- data/Rakefile +56 -0
- data/lib/jira4r/jira4r.rb +34 -0
- data/lib/jira4r/jira_tool.rb +211 -0
- data/lib/jira4r/v2/JiraSoapServiceDriver.rb +981 -0
- data/lib/jira4r/v2/jiraService.rb +817 -0
- data/lib/jira4r/v2/jiraServiceMappingRegistry.rb +976 -0
- data/lib/jiraService.rb +21 -0
- data/lib/jiraServiceMappingRegistry.rb +21 -0
- data/lib/svn_jira_hook.rb +77 -0
- data/pre-commit.sample +19 -0
- data/test/test_helper.rb +4 -0
- metadata +93 -0
@@ -0,0 +1,981 @@
|
|
1
|
+
require 'jiraService.rb'
|
2
|
+
require 'jiraServiceMappingRegistry.rb'
|
3
|
+
require 'soap/rpc/driver'
|
4
|
+
|
5
|
+
module Jira4R::V2
|
6
|
+
|
7
|
+
class JiraSoapService < ::SOAP::RPC::Driver
|
8
|
+
DefaultEndpointUrl = "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2"
|
9
|
+
NsSoapRpcJiraAtlassianCom = "http://soap.rpc.jira.atlassian.com"
|
10
|
+
|
11
|
+
Methods = [
|
12
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getComment"),
|
13
|
+
"",
|
14
|
+
"getComment",
|
15
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
16
|
+
["in", "in1", ["::SOAP::SOAPLong"]],
|
17
|
+
["retval", "getCommentReturn", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]] ],
|
18
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
19
|
+
:response_style => :rpc, :response_use => :encoded,
|
20
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
21
|
+
],
|
22
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createGroup"),
|
23
|
+
"",
|
24
|
+
"createGroup",
|
25
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
26
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
27
|
+
["in", "in2", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]],
|
28
|
+
["retval", "createGroupReturn", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]] ],
|
29
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
30
|
+
:response_style => :rpc, :response_use => :encoded,
|
31
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
32
|
+
],
|
33
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getUser"),
|
34
|
+
"",
|
35
|
+
"getUser",
|
36
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
37
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
38
|
+
["retval", "getUserReturn", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]] ],
|
39
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
40
|
+
:response_style => :rpc, :response_use => :encoded,
|
41
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
42
|
+
],
|
43
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getGroup"),
|
44
|
+
"",
|
45
|
+
"getGroup",
|
46
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
47
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
48
|
+
["retval", "getGroupReturn", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]] ],
|
49
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
50
|
+
:response_style => :rpc, :response_use => :encoded,
|
51
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
52
|
+
],
|
53
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "login"),
|
54
|
+
"",
|
55
|
+
"login",
|
56
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
57
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
58
|
+
["retval", "loginReturn", ["::SOAP::SOAPString"]] ],
|
59
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
60
|
+
:response_style => :rpc, :response_use => :encoded,
|
61
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
62
|
+
],
|
63
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getServerInfo"),
|
64
|
+
"",
|
65
|
+
"getServerInfo",
|
66
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
67
|
+
["retval", "getServerInfoReturn", ["Jira4R::V2::RemoteServerInfo", "http://beans.soap.rpc.jira.atlassian.com", "RemoteServerInfo"]] ],
|
68
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
69
|
+
:response_style => :rpc, :response_use => :encoded,
|
70
|
+
:faults => {} }
|
71
|
+
],
|
72
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "logout"),
|
73
|
+
"",
|
74
|
+
"logout",
|
75
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
76
|
+
["retval", "logoutReturn", ["::SOAP::SOAPBoolean"]] ],
|
77
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
78
|
+
:response_style => :rpc, :response_use => :encoded,
|
79
|
+
:faults => {} }
|
80
|
+
],
|
81
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssue"),
|
82
|
+
"",
|
83
|
+
"getIssue",
|
84
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
85
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
86
|
+
["retval", "getIssueReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
|
87
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
88
|
+
:response_style => :rpc, :response_use => :encoded,
|
89
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
90
|
+
],
|
91
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getComponents"),
|
92
|
+
"",
|
93
|
+
"getComponents",
|
94
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
95
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
96
|
+
["retval", "getComponentsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteComponent", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteComponent"]] ],
|
97
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
98
|
+
:response_style => :rpc, :response_use => :encoded,
|
99
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
100
|
+
],
|
101
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createUser"),
|
102
|
+
"",
|
103
|
+
"createUser",
|
104
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
105
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
106
|
+
["in", "in2", ["::SOAP::SOAPString"]],
|
107
|
+
["in", "in3", ["::SOAP::SOAPString"]],
|
108
|
+
["in", "in4", ["::SOAP::SOAPString"]],
|
109
|
+
["retval", "createUserReturn", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]] ],
|
110
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
111
|
+
:response_style => :rpc, :response_use => :encoded,
|
112
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
113
|
+
],
|
114
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createIssue"),
|
115
|
+
"",
|
116
|
+
"createIssue",
|
117
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
118
|
+
["in", "in1", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]],
|
119
|
+
["retval", "createIssueReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
|
120
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
121
|
+
:response_style => :rpc, :response_use => :encoded,
|
122
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
123
|
+
],
|
124
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAvailableActions"),
|
125
|
+
"",
|
126
|
+
"getAvailableActions",
|
127
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
128
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
129
|
+
["retval", "getAvailableActionsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteNamedObject", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteNamedObject"]] ],
|
130
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
131
|
+
:response_style => :rpc, :response_use => :encoded,
|
132
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
133
|
+
],
|
134
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjects"),
|
135
|
+
"",
|
136
|
+
"getProjects",
|
137
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
138
|
+
["retval", "getProjectsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteProject", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteProject"]] ],
|
139
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
140
|
+
:response_style => :rpc, :response_use => :encoded,
|
141
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
142
|
+
],
|
143
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateIssue"),
|
144
|
+
"",
|
145
|
+
"updateIssue",
|
146
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
147
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
148
|
+
["in", "in2", ["Jira4R::V2::ArrayOf_tns1_RemoteFieldValue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteFieldValue"]],
|
149
|
+
["retval", "updateIssueReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
|
150
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
151
|
+
:response_style => :rpc, :response_use => :encoded,
|
152
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
153
|
+
],
|
154
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getConfiguration"),
|
155
|
+
"",
|
156
|
+
"getConfiguration",
|
157
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
158
|
+
["retval", "getConfigurationReturn", ["Jira4R::V2::RemoteConfiguration", "http://beans.soap.rpc.jira.atlassian.com", "RemoteConfiguration"]] ],
|
159
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
160
|
+
:response_style => :rpc, :response_use => :encoded,
|
161
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
162
|
+
],
|
163
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateProject"),
|
164
|
+
"",
|
165
|
+
"updateProject",
|
166
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
167
|
+
["in", "in1", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
|
168
|
+
["retval", "updateProjectReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
|
169
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
170
|
+
:response_style => :rpc, :response_use => :encoded,
|
171
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
172
|
+
],
|
173
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectByKey"),
|
174
|
+
"",
|
175
|
+
"getProjectByKey",
|
176
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
177
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
178
|
+
["retval", "getProjectByKeyReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
|
179
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
180
|
+
:response_style => :rpc, :response_use => :encoded,
|
181
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
182
|
+
],
|
183
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getPriorities"),
|
184
|
+
"",
|
185
|
+
"getPriorities",
|
186
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
187
|
+
["retval", "getPrioritiesReturn", ["Jira4R::V2::ArrayOf_tns1_RemotePriority", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemotePriority"]] ],
|
188
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
189
|
+
:response_style => :rpc, :response_use => :encoded,
|
190
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
191
|
+
],
|
192
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getResolutions"),
|
193
|
+
"",
|
194
|
+
"getResolutions",
|
195
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
196
|
+
["retval", "getResolutionsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteResolution", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteResolution"]] ],
|
197
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
198
|
+
:response_style => :rpc, :response_use => :encoded,
|
199
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
200
|
+
],
|
201
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssueTypes"),
|
202
|
+
"",
|
203
|
+
"getIssueTypes",
|
204
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
205
|
+
["retval", "getIssueTypesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssueType", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssueType"]] ],
|
206
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
207
|
+
:response_style => :rpc, :response_use => :encoded,
|
208
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
209
|
+
],
|
210
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getStatuses"),
|
211
|
+
"",
|
212
|
+
"getStatuses",
|
213
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
214
|
+
["retval", "getStatusesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteStatus", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteStatus"]] ],
|
215
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
216
|
+
:response_style => :rpc, :response_use => :encoded,
|
217
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
218
|
+
],
|
219
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getSubTaskIssueTypes"),
|
220
|
+
"",
|
221
|
+
"getSubTaskIssueTypes",
|
222
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
223
|
+
["retval", "getSubTaskIssueTypesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssueType", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssueType"]] ],
|
224
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
225
|
+
:response_style => :rpc, :response_use => :encoded,
|
226
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
227
|
+
],
|
228
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectRoles"),
|
229
|
+
"",
|
230
|
+
"getProjectRoles",
|
231
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
232
|
+
["retval", "getProjectRolesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteProjectRole", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteProjectRole"]] ],
|
233
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
234
|
+
:response_style => :rpc, :response_use => :encoded,
|
235
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
236
|
+
],
|
237
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectRole"),
|
238
|
+
"",
|
239
|
+
"getProjectRole",
|
240
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
241
|
+
["in", "in1", ["::SOAP::SOAPLong"]],
|
242
|
+
["retval", "getProjectRoleReturn", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]] ],
|
243
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
244
|
+
:response_style => :rpc, :response_use => :encoded,
|
245
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
246
|
+
],
|
247
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectRoleActors"),
|
248
|
+
"",
|
249
|
+
"getProjectRoleActors",
|
250
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
251
|
+
["in", "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
252
|
+
["in", "in2", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
|
253
|
+
["retval", "getProjectRoleActorsReturn", ["Jira4R::V2::RemoteProjectRoleActors", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRoleActors"]] ],
|
254
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
255
|
+
:response_style => :rpc, :response_use => :encoded,
|
256
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
257
|
+
],
|
258
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getDefaultRoleActors"),
|
259
|
+
"",
|
260
|
+
"getDefaultRoleActors",
|
261
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
262
|
+
["in", "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
263
|
+
["retval", "getDefaultRoleActorsReturn", ["Jira4R::V2::RemoteRoleActors", "http://beans.soap.rpc.jira.atlassian.com", "RemoteRoleActors"]] ],
|
264
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
265
|
+
:response_style => :rpc, :response_use => :encoded,
|
266
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
267
|
+
],
|
268
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeAllRoleActorsByNameAndType"),
|
269
|
+
"",
|
270
|
+
"removeAllRoleActorsByNameAndType",
|
271
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
272
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
273
|
+
["in", "in2", ["::SOAP::SOAPString"]] ],
|
274
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
275
|
+
:response_style => :rpc, :response_use => :encoded,
|
276
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
277
|
+
],
|
278
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeAllRoleActorsByProject"),
|
279
|
+
"",
|
280
|
+
"removeAllRoleActorsByProject",
|
281
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
282
|
+
["in", "in1", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
|
283
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
284
|
+
:response_style => :rpc, :response_use => :encoded,
|
285
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
286
|
+
],
|
287
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteProjectRole"),
|
288
|
+
"",
|
289
|
+
"deleteProjectRole",
|
290
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
291
|
+
["in", "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
292
|
+
["in", "in2", ["::SOAP::SOAPBoolean"]] ],
|
293
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
294
|
+
:response_style => :rpc, :response_use => :encoded,
|
295
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
296
|
+
],
|
297
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateProjectRole"),
|
298
|
+
"",
|
299
|
+
"updateProjectRole",
|
300
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
301
|
+
["in", "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]] ],
|
302
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
303
|
+
:response_style => :rpc, :response_use => :encoded,
|
304
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
305
|
+
],
|
306
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createProjectRole"),
|
307
|
+
"",
|
308
|
+
"createProjectRole",
|
309
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
310
|
+
["in", "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
311
|
+
["retval", "createProjectRoleReturn", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]] ],
|
312
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
313
|
+
:response_style => :rpc, :response_use => :encoded,
|
314
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
315
|
+
],
|
316
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "isProjectRoleNameUnique"),
|
317
|
+
"",
|
318
|
+
"isProjectRoleNameUnique",
|
319
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
320
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
321
|
+
["retval", "isProjectRoleNameUniqueReturn", ["::SOAP::SOAPBoolean"]] ],
|
322
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
323
|
+
:response_style => :rpc, :response_use => :encoded,
|
324
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
325
|
+
],
|
326
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addActorsToProjectRole"),
|
327
|
+
"",
|
328
|
+
"addActorsToProjectRole",
|
329
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
330
|
+
["in", "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
|
331
|
+
["in", "in2", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
332
|
+
["in", "in3", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
|
333
|
+
["in", "in4", ["::SOAP::SOAPString"]] ],
|
334
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
335
|
+
:response_style => :rpc, :response_use => :encoded,
|
336
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
337
|
+
],
|
338
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeActorsFromProjectRole"),
|
339
|
+
"",
|
340
|
+
"removeActorsFromProjectRole",
|
341
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
342
|
+
["in", "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
|
343
|
+
["in", "in2", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
344
|
+
["in", "in3", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
|
345
|
+
["in", "in4", ["::SOAP::SOAPString"]] ],
|
346
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
347
|
+
:response_style => :rpc, :response_use => :encoded,
|
348
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
349
|
+
],
|
350
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addDefaultActorsToProjectRole"),
|
351
|
+
"",
|
352
|
+
"addDefaultActorsToProjectRole",
|
353
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
354
|
+
["in", "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
|
355
|
+
["in", "in2", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
356
|
+
["in", "in3", ["::SOAP::SOAPString"]] ],
|
357
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
358
|
+
:response_style => :rpc, :response_use => :encoded,
|
359
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
360
|
+
],
|
361
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeDefaultActorsFromProjectRole"),
|
362
|
+
"",
|
363
|
+
"removeDefaultActorsFromProjectRole",
|
364
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
365
|
+
["in", "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
|
366
|
+
["in", "in2", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
367
|
+
["in", "in3", ["::SOAP::SOAPString"]] ],
|
368
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
369
|
+
:response_style => :rpc, :response_use => :encoded,
|
370
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
371
|
+
],
|
372
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAssociatedNotificationSchemes"),
|
373
|
+
"",
|
374
|
+
"getAssociatedNotificationSchemes",
|
375
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
376
|
+
["in", "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
377
|
+
["retval", "getAssociatedNotificationSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteScheme"]] ],
|
378
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
379
|
+
:response_style => :rpc, :response_use => :encoded,
|
380
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
381
|
+
],
|
382
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAssociatedPermissionSchemes"),
|
383
|
+
"",
|
384
|
+
"getAssociatedPermissionSchemes",
|
385
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
386
|
+
["in", "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
|
387
|
+
["retval", "getAssociatedPermissionSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteScheme"]] ],
|
388
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
389
|
+
:response_style => :rpc, :response_use => :encoded,
|
390
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
391
|
+
],
|
392
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getCustomFields"),
|
393
|
+
"",
|
394
|
+
"getCustomFields",
|
395
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
396
|
+
["retval", "getCustomFieldsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteField", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteField"]] ],
|
397
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
398
|
+
:response_style => :rpc, :response_use => :encoded,
|
399
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
400
|
+
],
|
401
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getSavedFilters"),
|
402
|
+
"",
|
403
|
+
"getSavedFilters",
|
404
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
405
|
+
["retval", "getSavedFiltersReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteFilter", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteFilter"]] ],
|
406
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
407
|
+
:response_style => :rpc, :response_use => :encoded,
|
408
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
409
|
+
],
|
410
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getComments"),
|
411
|
+
"",
|
412
|
+
"getComments",
|
413
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
414
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
415
|
+
["retval", "getCommentsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteComment", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteComment"]] ],
|
416
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
417
|
+
:response_style => :rpc, :response_use => :encoded,
|
418
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
419
|
+
],
|
420
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "archiveVersion"),
|
421
|
+
"",
|
422
|
+
"archiveVersion",
|
423
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
424
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
425
|
+
["in", "in2", ["::SOAP::SOAPString"]],
|
426
|
+
["in", "in3", ["::SOAP::SOAPBoolean"]] ],
|
427
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
428
|
+
:response_style => :rpc, :response_use => :encoded,
|
429
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
430
|
+
],
|
431
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getVersions"),
|
432
|
+
"",
|
433
|
+
"getVersions",
|
434
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
435
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
436
|
+
["retval", "getVersionsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteVersion"]] ],
|
437
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
438
|
+
:response_style => :rpc, :response_use => :encoded,
|
439
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
440
|
+
],
|
441
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createProject"),
|
442
|
+
"",
|
443
|
+
"createProject",
|
444
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
445
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
446
|
+
["in", "in2", ["::SOAP::SOAPString"]],
|
447
|
+
["in", "in3", ["::SOAP::SOAPString"]],
|
448
|
+
["in", "in4", ["::SOAP::SOAPString"]],
|
449
|
+
["in", "in5", ["::SOAP::SOAPString"]],
|
450
|
+
["in", "in6", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]],
|
451
|
+
["in", "in7", ["Jira4R::V2::RemoteScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemoteScheme"]],
|
452
|
+
["in", "in8", ["Jira4R::V2::RemoteScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemoteScheme"]],
|
453
|
+
["retval", "createProjectReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
|
454
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
455
|
+
:response_style => :rpc, :response_use => :encoded,
|
456
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
457
|
+
],
|
458
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addComment"),
|
459
|
+
"",
|
460
|
+
"addComment",
|
461
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
462
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
463
|
+
["in", "in2", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]] ],
|
464
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
465
|
+
:response_style => :rpc, :response_use => :encoded,
|
466
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
467
|
+
],
|
468
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getFieldsForEdit"),
|
469
|
+
"",
|
470
|
+
"getFieldsForEdit",
|
471
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
472
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
473
|
+
["retval", "getFieldsForEditReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteField", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteField"]] ],
|
474
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
475
|
+
:response_style => :rpc, :response_use => :encoded,
|
476
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
477
|
+
],
|
478
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssueTypesForProject"),
|
479
|
+
"",
|
480
|
+
"getIssueTypesForProject",
|
481
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
482
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
483
|
+
["retval", "getIssueTypesForProjectReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssueType", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssueType"]] ],
|
484
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
485
|
+
:response_style => :rpc, :response_use => :encoded,
|
486
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
487
|
+
],
|
488
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getSubTaskIssueTypesForProject"),
|
489
|
+
"",
|
490
|
+
"getSubTaskIssueTypesForProject",
|
491
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
492
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
493
|
+
["retval", "getSubTaskIssueTypesForProjectReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssueType", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssueType"]] ],
|
494
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
495
|
+
:response_style => :rpc, :response_use => :encoded,
|
496
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
497
|
+
],
|
498
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addUserToGroup"),
|
499
|
+
"",
|
500
|
+
"addUserToGroup",
|
501
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
502
|
+
["in", "in1", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]],
|
503
|
+
["in", "in2", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]] ],
|
504
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
505
|
+
:response_style => :rpc, :response_use => :encoded,
|
506
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
507
|
+
],
|
508
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeUserFromGroup"),
|
509
|
+
"",
|
510
|
+
"removeUserFromGroup",
|
511
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
512
|
+
["in", "in1", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]],
|
513
|
+
["in", "in2", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]] ],
|
514
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
515
|
+
:response_style => :rpc, :response_use => :encoded,
|
516
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
517
|
+
],
|
518
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectById"),
|
519
|
+
"",
|
520
|
+
"getProjectById",
|
521
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
522
|
+
["in", "in1", ["::SOAP::SOAPLong"]],
|
523
|
+
["retval", "getProjectByIdReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
|
524
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
525
|
+
:response_style => :rpc, :response_use => :encoded,
|
526
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
527
|
+
],
|
528
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteProject"),
|
529
|
+
"",
|
530
|
+
"deleteProject",
|
531
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
532
|
+
["in", "in1", ["::SOAP::SOAPString"]] ],
|
533
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
534
|
+
:response_style => :rpc, :response_use => :encoded,
|
535
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
536
|
+
],
|
537
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "releaseVersion"),
|
538
|
+
"",
|
539
|
+
"releaseVersion",
|
540
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
541
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
542
|
+
["in", "in2", ["Jira4R::V2::RemoteVersion", "http://beans.soap.rpc.jira.atlassian.com", "RemoteVersion"]] ],
|
543
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
544
|
+
:response_style => :rpc, :response_use => :encoded,
|
545
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
546
|
+
],
|
547
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteIssue"),
|
548
|
+
"",
|
549
|
+
"deleteIssue",
|
550
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
551
|
+
["in", "in1", ["::SOAP::SOAPString"]] ],
|
552
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
553
|
+
:response_style => :rpc, :response_use => :encoded,
|
554
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
555
|
+
],
|
556
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addAttachmentsToIssue"),
|
557
|
+
"",
|
558
|
+
"addAttachmentsToIssue",
|
559
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
560
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
561
|
+
["in", "in2", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
|
562
|
+
["in", "in3", ["Jira4R::V2::ArrayOf_xsd_base64Binary", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_base64Binary"]],
|
563
|
+
["retval", "addAttachmentsToIssueReturn", ["::SOAP::SOAPBoolean"]] ],
|
564
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
565
|
+
:response_style => :rpc, :response_use => :encoded,
|
566
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
567
|
+
],
|
568
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAttachmentsFromIssue"),
|
569
|
+
"",
|
570
|
+
"getAttachmentsFromIssue",
|
571
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
572
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
573
|
+
["retval", "getAttachmentsFromIssueReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteAttachment", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteAttachment"]] ],
|
574
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
575
|
+
:response_style => :rpc, :response_use => :encoded,
|
576
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
577
|
+
],
|
578
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "hasPermissionToEditComment"),
|
579
|
+
"",
|
580
|
+
"hasPermissionToEditComment",
|
581
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
582
|
+
["in", "in1", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]],
|
583
|
+
["retval", "hasPermissionToEditCommentReturn", ["::SOAP::SOAPBoolean"]] ],
|
584
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
585
|
+
:response_style => :rpc, :response_use => :encoded,
|
586
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
587
|
+
],
|
588
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "editComment"),
|
589
|
+
"",
|
590
|
+
"editComment",
|
591
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
592
|
+
["in", "in1", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]],
|
593
|
+
["retval", "editCommentReturn", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]] ],
|
594
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
595
|
+
:response_style => :rpc, :response_use => :encoded,
|
596
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
597
|
+
],
|
598
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getFieldsForAction"),
|
599
|
+
"",
|
600
|
+
"getFieldsForAction",
|
601
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
602
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
603
|
+
["in", "in2", ["::SOAP::SOAPString"]],
|
604
|
+
["retval", "getFieldsForActionReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteField", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteField"]] ],
|
605
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
606
|
+
:response_style => :rpc, :response_use => :encoded,
|
607
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
608
|
+
],
|
609
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "progressWorkflowAction"),
|
610
|
+
"",
|
611
|
+
"progressWorkflowAction",
|
612
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
613
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
614
|
+
["in", "in2", ["::SOAP::SOAPString"]],
|
615
|
+
["in", "in3", ["Jira4R::V2::ArrayOf_tns1_RemoteFieldValue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteFieldValue"]],
|
616
|
+
["retval", "progressWorkflowActionReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
|
617
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
618
|
+
:response_style => :rpc, :response_use => :encoded,
|
619
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
620
|
+
],
|
621
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssueById"),
|
622
|
+
"",
|
623
|
+
"getIssueById",
|
624
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
625
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
626
|
+
["retval", "getIssueByIdReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
|
627
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
628
|
+
:response_style => :rpc, :response_use => :encoded,
|
629
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
630
|
+
],
|
631
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addWorklogWithNewRemainingEstimate"),
|
632
|
+
"",
|
633
|
+
"addWorklogWithNewRemainingEstimate",
|
634
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
635
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
636
|
+
["in", "in2", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]],
|
637
|
+
["in", "in3", ["::SOAP::SOAPString"]],
|
638
|
+
["retval", "addWorklogWithNewRemainingEstimateReturn", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
|
639
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
640
|
+
:response_style => :rpc, :response_use => :encoded,
|
641
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
642
|
+
],
|
643
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addWorklogAndAutoAdjustRemainingEstimate"),
|
644
|
+
"",
|
645
|
+
"addWorklogAndAutoAdjustRemainingEstimate",
|
646
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
647
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
648
|
+
["in", "in2", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]],
|
649
|
+
["retval", "addWorklogAndAutoAdjustRemainingEstimateReturn", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
|
650
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
651
|
+
:response_style => :rpc, :response_use => :encoded,
|
652
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
653
|
+
],
|
654
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addWorklogAndRetainRemainingEstimate"),
|
655
|
+
"",
|
656
|
+
"addWorklogAndRetainRemainingEstimate",
|
657
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
658
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
659
|
+
["in", "in2", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]],
|
660
|
+
["retval", "addWorklogAndRetainRemainingEstimateReturn", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
|
661
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
662
|
+
:response_style => :rpc, :response_use => :encoded,
|
663
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
664
|
+
],
|
665
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteWorklogWithNewRemainingEstimate"),
|
666
|
+
"",
|
667
|
+
"deleteWorklogWithNewRemainingEstimate",
|
668
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
669
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
670
|
+
["in", "in2", ["::SOAP::SOAPString"]] ],
|
671
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
672
|
+
:response_style => :rpc, :response_use => :encoded,
|
673
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
674
|
+
],
|
675
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteWorklogAndAutoAdjustRemainingEstimate"),
|
676
|
+
"",
|
677
|
+
"deleteWorklogAndAutoAdjustRemainingEstimate",
|
678
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
679
|
+
["in", "in1", ["::SOAP::SOAPString"]] ],
|
680
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
681
|
+
:response_style => :rpc, :response_use => :encoded,
|
682
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
683
|
+
],
|
684
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteWorklogAndRetainRemainingEstimate"),
|
685
|
+
"",
|
686
|
+
"deleteWorklogAndRetainRemainingEstimate",
|
687
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
688
|
+
["in", "in1", ["::SOAP::SOAPString"]] ],
|
689
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
690
|
+
:response_style => :rpc, :response_use => :encoded,
|
691
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
692
|
+
],
|
693
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateWorklogWithNewRemainingEstimate"),
|
694
|
+
"",
|
695
|
+
"updateWorklogWithNewRemainingEstimate",
|
696
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
697
|
+
["in", "in1", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]],
|
698
|
+
["in", "in2", ["::SOAP::SOAPString"]] ],
|
699
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
700
|
+
:response_style => :rpc, :response_use => :encoded,
|
701
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
702
|
+
],
|
703
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateWorklogAndAutoAdjustRemainingEstimate"),
|
704
|
+
"",
|
705
|
+
"updateWorklogAndAutoAdjustRemainingEstimate",
|
706
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
707
|
+
["in", "in1", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
|
708
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
709
|
+
:response_style => :rpc, :response_use => :encoded,
|
710
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
711
|
+
],
|
712
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateWorklogAndRetainRemainingEstimate"),
|
713
|
+
"",
|
714
|
+
"updateWorklogAndRetainRemainingEstimate",
|
715
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
716
|
+
["in", "in1", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
|
717
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
718
|
+
:response_style => :rpc, :response_use => :encoded,
|
719
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
720
|
+
],
|
721
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getWorklogs"),
|
722
|
+
"",
|
723
|
+
"getWorklogs",
|
724
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
725
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
726
|
+
["retval", "getWorklogsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteWorklog", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteWorklog"]] ],
|
727
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
728
|
+
:response_style => :rpc, :response_use => :encoded,
|
729
|
+
:faults => {"Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
730
|
+
],
|
731
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "hasPermissionToCreateWorklog"),
|
732
|
+
"",
|
733
|
+
"hasPermissionToCreateWorklog",
|
734
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
735
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
736
|
+
["retval", "hasPermissionToCreateWorklogReturn", ["::SOAP::SOAPBoolean"]] ],
|
737
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
738
|
+
:response_style => :rpc, :response_use => :encoded,
|
739
|
+
:faults => {"Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
740
|
+
],
|
741
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "hasPermissionToDeleteWorklog"),
|
742
|
+
"",
|
743
|
+
"hasPermissionToDeleteWorklog",
|
744
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
745
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
746
|
+
["retval", "hasPermissionToDeleteWorklogReturn", ["::SOAP::SOAPBoolean"]] ],
|
747
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
748
|
+
:response_style => :rpc, :response_use => :encoded,
|
749
|
+
:faults => {"Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
750
|
+
],
|
751
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "hasPermissionToUpdateWorklog"),
|
752
|
+
"",
|
753
|
+
"hasPermissionToUpdateWorklog",
|
754
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
755
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
756
|
+
["retval", "hasPermissionToUpdateWorklogReturn", ["::SOAP::SOAPBoolean"]] ],
|
757
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
758
|
+
:response_style => :rpc, :response_use => :encoded,
|
759
|
+
:faults => {"Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
760
|
+
],
|
761
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getNotificationSchemes"),
|
762
|
+
"",
|
763
|
+
"getNotificationSchemes",
|
764
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
765
|
+
["retval", "getNotificationSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteScheme"]] ],
|
766
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
767
|
+
:response_style => :rpc, :response_use => :encoded,
|
768
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
769
|
+
],
|
770
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getPermissionSchemes"),
|
771
|
+
"",
|
772
|
+
"getPermissionSchemes",
|
773
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
774
|
+
["retval", "getPermissionSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemotePermissionScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemotePermissionScheme"]] ],
|
775
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
776
|
+
:response_style => :rpc, :response_use => :encoded,
|
777
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
778
|
+
],
|
779
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createPermissionScheme"),
|
780
|
+
"",
|
781
|
+
"createPermissionScheme",
|
782
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
783
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
784
|
+
["in", "in2", ["::SOAP::SOAPString"]],
|
785
|
+
["retval", "createPermissionSchemeReturn", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]] ],
|
786
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
787
|
+
:response_style => :rpc, :response_use => :encoded,
|
788
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
789
|
+
],
|
790
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deletePermissionScheme"),
|
791
|
+
"",
|
792
|
+
"deletePermissionScheme",
|
793
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
794
|
+
["in", "in1", ["::SOAP::SOAPString"]] ],
|
795
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
796
|
+
:response_style => :rpc, :response_use => :encoded,
|
797
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
798
|
+
],
|
799
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addPermissionTo"),
|
800
|
+
"",
|
801
|
+
"addPermissionTo",
|
802
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
803
|
+
["in", "in1", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]],
|
804
|
+
["in", "in2", ["Jira4R::V2::RemotePermission", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermission"]],
|
805
|
+
["in", "in3", ["Jira4R::V2::RemoteEntity", "http://beans.soap.rpc.jira.atlassian.com", "RemoteEntity"]],
|
806
|
+
["retval", "addPermissionToReturn", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]] ],
|
807
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
808
|
+
:response_style => :rpc, :response_use => :encoded,
|
809
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
810
|
+
],
|
811
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deletePermissionFrom"),
|
812
|
+
"",
|
813
|
+
"deletePermissionFrom",
|
814
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
815
|
+
["in", "in1", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]],
|
816
|
+
["in", "in2", ["Jira4R::V2::RemotePermission", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermission"]],
|
817
|
+
["in", "in3", ["Jira4R::V2::RemoteEntity", "http://beans.soap.rpc.jira.atlassian.com", "RemoteEntity"]],
|
818
|
+
["retval", "deletePermissionFromReturn", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]] ],
|
819
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
820
|
+
:response_style => :rpc, :response_use => :encoded,
|
821
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
822
|
+
],
|
823
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAllPermissions"),
|
824
|
+
"",
|
825
|
+
"getAllPermissions",
|
826
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
827
|
+
["retval", "getAllPermissionsReturn", ["Jira4R::V2::ArrayOf_tns1_RemotePermission", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemotePermission"]] ],
|
828
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
829
|
+
:response_style => :rpc, :response_use => :encoded,
|
830
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
831
|
+
],
|
832
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssueCountForFilter"),
|
833
|
+
"",
|
834
|
+
"getIssueCountForFilter",
|
835
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
836
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
837
|
+
["retval", "getIssueCountForFilterReturn", ["::SOAP::SOAPLong"]] ],
|
838
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
839
|
+
:response_style => :rpc, :response_use => :encoded,
|
840
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
841
|
+
],
|
842
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssuesFromTextSearch"),
|
843
|
+
"",
|
844
|
+
"getIssuesFromTextSearch",
|
845
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
846
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
847
|
+
["retval", "getIssuesFromTextSearchReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssue"]] ],
|
848
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
849
|
+
:response_style => :rpc, :response_use => :encoded,
|
850
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
851
|
+
],
|
852
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssuesFromTextSearchWithProject"),
|
853
|
+
"",
|
854
|
+
"getIssuesFromTextSearchWithProject",
|
855
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
856
|
+
["in", "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
|
857
|
+
["in", "in2", ["::SOAP::SOAPString"]],
|
858
|
+
["in", "in3", ["::SOAP::SOAPInt"]],
|
859
|
+
["retval", "getIssuesFromTextSearchWithProjectReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssue"]] ],
|
860
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
861
|
+
:response_style => :rpc, :response_use => :encoded,
|
862
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
863
|
+
],
|
864
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteUser"),
|
865
|
+
"",
|
866
|
+
"deleteUser",
|
867
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
868
|
+
["in", "in1", ["::SOAP::SOAPString"]] ],
|
869
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
870
|
+
:response_style => :rpc, :response_use => :encoded,
|
871
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
872
|
+
],
|
873
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateGroup"),
|
874
|
+
"",
|
875
|
+
"updateGroup",
|
876
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
877
|
+
["in", "in1", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]],
|
878
|
+
["retval", "updateGroupReturn", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]] ],
|
879
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
880
|
+
:response_style => :rpc, :response_use => :encoded,
|
881
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
882
|
+
],
|
883
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteGroup"),
|
884
|
+
"",
|
885
|
+
"deleteGroup",
|
886
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
887
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
888
|
+
["in", "in2", ["::SOAP::SOAPString"]] ],
|
889
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
890
|
+
:response_style => :rpc, :response_use => :encoded,
|
891
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
892
|
+
],
|
893
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "refreshCustomFields"),
|
894
|
+
"",
|
895
|
+
"refreshCustomFields",
|
896
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]] ],
|
897
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
898
|
+
:response_style => :rpc, :response_use => :encoded,
|
899
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
900
|
+
],
|
901
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectsNoSchemes"),
|
902
|
+
"",
|
903
|
+
"getProjectsNoSchemes",
|
904
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
905
|
+
["retval", "getProjectsNoSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteProject", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteProject"]] ],
|
906
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
907
|
+
:response_style => :rpc, :response_use => :encoded,
|
908
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
909
|
+
],
|
910
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addVersion"),
|
911
|
+
"",
|
912
|
+
"addVersion",
|
913
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
914
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
915
|
+
["in", "in2", ["Jira4R::V2::RemoteVersion", "http://beans.soap.rpc.jira.atlassian.com", "RemoteVersion"]],
|
916
|
+
["retval", "addVersionReturn", ["Jira4R::V2::RemoteVersion", "http://beans.soap.rpc.jira.atlassian.com", "RemoteVersion"]] ],
|
917
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
918
|
+
:response_style => :rpc, :response_use => :encoded,
|
919
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
920
|
+
],
|
921
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createProjectFromObject"),
|
922
|
+
"",
|
923
|
+
"createProjectFromObject",
|
924
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
925
|
+
["in", "in1", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
|
926
|
+
["retval", "createProjectFromObjectReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
|
927
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
928
|
+
:response_style => :rpc, :response_use => :encoded,
|
929
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteValidationException_"=>{:use=>"encoded", :name=>"RemoteValidationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
930
|
+
],
|
931
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getSecuritySchemes"),
|
932
|
+
"",
|
933
|
+
"getSecuritySchemes",
|
934
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
935
|
+
["retval", "getSecuritySchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteScheme"]] ],
|
936
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
937
|
+
:response_style => :rpc, :response_use => :encoded,
|
938
|
+
:faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:use=>"encoded", :name=>"RemoteAuthenticationException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:use=>"encoded", :name=>"RemotePermissionException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
939
|
+
],
|
940
|
+
[ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssuesFromFilter"),
|
941
|
+
"",
|
942
|
+
"getIssuesFromFilter",
|
943
|
+
[ ["in", "in0", ["::SOAP::SOAPString"]],
|
944
|
+
["in", "in1", ["::SOAP::SOAPString"]],
|
945
|
+
["retval", "getIssuesFromFilterReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssue"]] ],
|
946
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
947
|
+
:response_style => :rpc, :response_use => :encoded,
|
948
|
+
:faults => {"Jira4R::V2::RemoteException_"=>{:use=>"encoded", :name=>"RemoteException", :ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
|
949
|
+
]
|
950
|
+
]
|
951
|
+
|
952
|
+
def initialize(endpoint_url = nil)
|
953
|
+
endpoint_url ||= DefaultEndpointUrl
|
954
|
+
super(endpoint_url, nil)
|
955
|
+
self.mapping_registry = DefaultMappingRegistry::EncodedRegistry
|
956
|
+
self.literal_mapping_registry = DefaultMappingRegistry::LiteralRegistry
|
957
|
+
init_methods
|
958
|
+
end
|
959
|
+
|
960
|
+
private
|
961
|
+
|
962
|
+
def init_methods
|
963
|
+
Methods.each do |definitions|
|
964
|
+
opt = definitions.last
|
965
|
+
if opt[:request_style] == :document
|
966
|
+
add_document_operation(*definitions)
|
967
|
+
else
|
968
|
+
add_rpc_operation(*definitions)
|
969
|
+
qname = definitions[0]
|
970
|
+
name = definitions[2]
|
971
|
+
if qname.name != name and qname.name.capitalize == name.capitalize
|
972
|
+
::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
|
973
|
+
__send__(name, *arg)
|
974
|
+
end
|
975
|
+
end
|
976
|
+
end
|
977
|
+
end
|
978
|
+
end
|
979
|
+
end
|
980
|
+
|
981
|
+
end
|