JOT 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +14 -0
- data/LICENSE.txt +20 -0
- data/README.md +61 -0
- data/README.rdoc +19 -0
- data/Rakefile +62 -0
- data/VERSION +1 -0
- data/bin/JOT +158 -0
- data/example.erb +37 -0
- data/lib/JIRA-SOAP-STUBS/JiraSoapServiceServiceClient.rb +1921 -0
- data/lib/JIRA-SOAP-STUBS/default.rb +887 -0
- data/lib/JIRA-SOAP-STUBS/defaultDriver.rb +1141 -0
- data/lib/JIRA-SOAP-STUBS/defaultMappingRegistry.rb +1058 -0
- data/lib/extension_methods.rb +22 -0
- data/test/helper.rb +18 -0
- data/test/test_JOT.rb +7 -0
- metadata +156 -0
@@ -0,0 +1,1921 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'JIRA-SOAP-STUBS/defaultDriver.rb'
|
3
|
+
|
4
|
+
|
5
|
+
module JIRA
|
6
|
+
|
7
|
+
endpoint_url = ARGV.shift
|
8
|
+
obj = JiraSoapService.new(endpoint_url)
|
9
|
+
|
10
|
+
# run ruby with -d to see SOAP wiredumps.
|
11
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
12
|
+
|
13
|
+
# SYNOPSIS
|
14
|
+
# getComment(in0, in1)
|
15
|
+
#
|
16
|
+
# ARGS
|
17
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
18
|
+
# in1 Long - {http://www.w3.org/2001/XMLSchema}long
|
19
|
+
#
|
20
|
+
# RETURNS
|
21
|
+
# getCommentReturn RemoteComment - {http://beans.soap.rpc.jira.atlassian.com}RemoteComment
|
22
|
+
#
|
23
|
+
# RAISES
|
24
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
25
|
+
#
|
26
|
+
in0 = in1 = nil
|
27
|
+
puts obj.getComment(in0, in1)
|
28
|
+
|
29
|
+
# SYNOPSIS
|
30
|
+
# getServerInfo(in0)
|
31
|
+
#
|
32
|
+
# ARGS
|
33
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
34
|
+
#
|
35
|
+
# RETURNS
|
36
|
+
# getServerInfoReturn RemoteServerInfo - {http://beans.soap.rpc.jira.atlassian.com}RemoteServerInfo
|
37
|
+
#
|
38
|
+
in0 = nil
|
39
|
+
puts obj.getServerInfo(in0)
|
40
|
+
|
41
|
+
# SYNOPSIS
|
42
|
+
# getGroup(in0, in1)
|
43
|
+
#
|
44
|
+
# ARGS
|
45
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
46
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
47
|
+
#
|
48
|
+
# RETURNS
|
49
|
+
# getGroupReturn RemoteGroup - {http://beans.soap.rpc.jira.atlassian.com}RemoteGroup
|
50
|
+
#
|
51
|
+
# RAISES
|
52
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
53
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
54
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
55
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
56
|
+
#
|
57
|
+
in0 = in1 = nil
|
58
|
+
puts obj.getGroup(in0, in1)
|
59
|
+
|
60
|
+
# SYNOPSIS
|
61
|
+
# login(in0, in1)
|
62
|
+
#
|
63
|
+
# ARGS
|
64
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
65
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
66
|
+
#
|
67
|
+
# RETURNS
|
68
|
+
# loginReturn C_String - {http://www.w3.org/2001/XMLSchema}string
|
69
|
+
#
|
70
|
+
# RAISES
|
71
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
72
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
73
|
+
#
|
74
|
+
in0 = in1 = nil
|
75
|
+
puts obj.login(in0, in1)
|
76
|
+
|
77
|
+
# SYNOPSIS
|
78
|
+
# getUser(in0, in1)
|
79
|
+
#
|
80
|
+
# ARGS
|
81
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
82
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
83
|
+
#
|
84
|
+
# RETURNS
|
85
|
+
# getUserReturn RemoteUser - {http://beans.soap.rpc.jira.atlassian.com}RemoteUser
|
86
|
+
#
|
87
|
+
# RAISES
|
88
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
89
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
90
|
+
#
|
91
|
+
in0 = in1 = nil
|
92
|
+
puts obj.getUser(in0, in1)
|
93
|
+
|
94
|
+
# SYNOPSIS
|
95
|
+
# getIssue(in0, in1)
|
96
|
+
#
|
97
|
+
# ARGS
|
98
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
99
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
100
|
+
#
|
101
|
+
# RETURNS
|
102
|
+
# getIssueReturn RemoteIssue - {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
|
103
|
+
#
|
104
|
+
# RAISES
|
105
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
106
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
107
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
108
|
+
#
|
109
|
+
in0 = in1 = nil
|
110
|
+
puts obj.getIssue(in0, in1)
|
111
|
+
|
112
|
+
# SYNOPSIS
|
113
|
+
# getVersions(in0, in1)
|
114
|
+
#
|
115
|
+
# ARGS
|
116
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
117
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
118
|
+
#
|
119
|
+
# RETURNS
|
120
|
+
# getVersionsReturn ArrayOf_tns1_RemoteVersion - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteVersion
|
121
|
+
#
|
122
|
+
# RAISES
|
123
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
124
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
125
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
126
|
+
#
|
127
|
+
in0 = in1 = nil
|
128
|
+
puts obj.getVersions(in0, in1)
|
129
|
+
|
130
|
+
# SYNOPSIS
|
131
|
+
# getComponents(in0, in1)
|
132
|
+
#
|
133
|
+
# ARGS
|
134
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
135
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
136
|
+
#
|
137
|
+
# RETURNS
|
138
|
+
# getComponentsReturn ArrayOf_tns1_RemoteComponent - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteComponent
|
139
|
+
#
|
140
|
+
# RAISES
|
141
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
142
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
143
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
144
|
+
#
|
145
|
+
in0 = in1 = nil
|
146
|
+
puts obj.getComponents(in0, in1)
|
147
|
+
|
148
|
+
# SYNOPSIS
|
149
|
+
# createGroup(in0, in1, in2)
|
150
|
+
#
|
151
|
+
# ARGS
|
152
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
153
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
154
|
+
# in2 RemoteUser - {http://beans.soap.rpc.jira.atlassian.com}RemoteUser
|
155
|
+
#
|
156
|
+
# RETURNS
|
157
|
+
# createGroupReturn RemoteGroup - {http://beans.soap.rpc.jira.atlassian.com}RemoteGroup
|
158
|
+
#
|
159
|
+
# RAISES
|
160
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
161
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
162
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
163
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
164
|
+
#
|
165
|
+
in0 = in1 = in2 = nil
|
166
|
+
puts obj.createGroup(in0, in1, in2)
|
167
|
+
|
168
|
+
# SYNOPSIS
|
169
|
+
# createUser(in0, in1, in2, in3, in4)
|
170
|
+
#
|
171
|
+
# ARGS
|
172
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
173
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
174
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
175
|
+
# in3 C_String - {http://www.w3.org/2001/XMLSchema}string
|
176
|
+
# in4 C_String - {http://www.w3.org/2001/XMLSchema}string
|
177
|
+
#
|
178
|
+
# RETURNS
|
179
|
+
# createUserReturn RemoteUser - {http://beans.soap.rpc.jira.atlassian.com}RemoteUser
|
180
|
+
#
|
181
|
+
# RAISES
|
182
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
183
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
184
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
185
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
186
|
+
#
|
187
|
+
in0 = in1 = in2 = in3 = in4 = nil
|
188
|
+
puts obj.createUser(in0, in1, in2, in3, in4)
|
189
|
+
|
190
|
+
# SYNOPSIS
|
191
|
+
# createIssue(in0, in1)
|
192
|
+
#
|
193
|
+
# ARGS
|
194
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
195
|
+
# in1 RemoteIssue - {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
|
196
|
+
#
|
197
|
+
# RETURNS
|
198
|
+
# createIssueReturn RemoteIssue - {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
|
199
|
+
#
|
200
|
+
# RAISES
|
201
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
202
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
203
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
204
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
205
|
+
#
|
206
|
+
in0 = in1 = nil
|
207
|
+
puts obj.createIssue(in0, in1)
|
208
|
+
|
209
|
+
# SYNOPSIS
|
210
|
+
# updateIssue(in0, in1, in2)
|
211
|
+
#
|
212
|
+
# ARGS
|
213
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
214
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
215
|
+
# in2 ArrayOf_tns1_RemoteFieldValue - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteFieldValue
|
216
|
+
#
|
217
|
+
# RETURNS
|
218
|
+
# updateIssueReturn RemoteIssue - {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
|
219
|
+
#
|
220
|
+
# RAISES
|
221
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
222
|
+
#
|
223
|
+
in0 = in1 = in2 = nil
|
224
|
+
puts obj.updateIssue(in0, in1, in2)
|
225
|
+
|
226
|
+
# SYNOPSIS
|
227
|
+
# deleteIssue(in0, in1)
|
228
|
+
#
|
229
|
+
# ARGS
|
230
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
231
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
232
|
+
#
|
233
|
+
# RETURNS
|
234
|
+
# N/A
|
235
|
+
#
|
236
|
+
# RAISES
|
237
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
238
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
239
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
240
|
+
#
|
241
|
+
in0 = in1 = nil
|
242
|
+
puts obj.deleteIssue(in0, in1)
|
243
|
+
|
244
|
+
# SYNOPSIS
|
245
|
+
# getAvailableActions(in0, in1)
|
246
|
+
#
|
247
|
+
# ARGS
|
248
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
249
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
250
|
+
#
|
251
|
+
# RETURNS
|
252
|
+
# getAvailableActionsReturn ArrayOf_tns1_RemoteNamedObject - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteNamedObject
|
253
|
+
#
|
254
|
+
# RAISES
|
255
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
256
|
+
#
|
257
|
+
in0 = in1 = nil
|
258
|
+
puts obj.getAvailableActions(in0, in1)
|
259
|
+
|
260
|
+
# SYNOPSIS
|
261
|
+
# getSubTaskIssueTypes(in0)
|
262
|
+
#
|
263
|
+
# ARGS
|
264
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
265
|
+
#
|
266
|
+
# RETURNS
|
267
|
+
# getSubTaskIssueTypesReturn ArrayOf_tns1_RemoteIssueType - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssueType
|
268
|
+
#
|
269
|
+
# RAISES
|
270
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
271
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
272
|
+
#
|
273
|
+
in0 = nil
|
274
|
+
puts obj.getSubTaskIssueTypes(in0)
|
275
|
+
|
276
|
+
# SYNOPSIS
|
277
|
+
# getConfiguration(in0)
|
278
|
+
#
|
279
|
+
# ARGS
|
280
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
281
|
+
#
|
282
|
+
# RETURNS
|
283
|
+
# getConfigurationReturn RemoteConfiguration - {http://beans.soap.rpc.jira.atlassian.com}RemoteConfiguration
|
284
|
+
#
|
285
|
+
# RAISES
|
286
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
287
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
288
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
289
|
+
#
|
290
|
+
in0 = nil
|
291
|
+
puts obj.getConfiguration(in0)
|
292
|
+
|
293
|
+
# SYNOPSIS
|
294
|
+
# createProject(in0, in1, in2, in3, in4, in5, in6, in7, in8)
|
295
|
+
#
|
296
|
+
# ARGS
|
297
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
298
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
299
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
300
|
+
# in3 C_String - {http://www.w3.org/2001/XMLSchema}string
|
301
|
+
# in4 C_String - {http://www.w3.org/2001/XMLSchema}string
|
302
|
+
# in5 C_String - {http://www.w3.org/2001/XMLSchema}string
|
303
|
+
# in6 RemotePermissionScheme - {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionScheme
|
304
|
+
# in7 RemoteScheme - {http://beans.soap.rpc.jira.atlassian.com}RemoteScheme
|
305
|
+
# in8 RemoteScheme - {http://beans.soap.rpc.jira.atlassian.com}RemoteScheme
|
306
|
+
#
|
307
|
+
# RETURNS
|
308
|
+
# createProjectReturn RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
309
|
+
#
|
310
|
+
# RAISES
|
311
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
312
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
313
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
314
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
315
|
+
#
|
316
|
+
in0 = in1 = in2 = in3 = in4 = in5 = in6 = in7 = in8 = nil
|
317
|
+
puts obj.createProject(in0, in1, in2, in3, in4, in5, in6, in7, in8)
|
318
|
+
|
319
|
+
# SYNOPSIS
|
320
|
+
# updateProject(in0, in1)
|
321
|
+
#
|
322
|
+
# ARGS
|
323
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
324
|
+
# in1 RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
325
|
+
#
|
326
|
+
# RETURNS
|
327
|
+
# updateProjectReturn RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
328
|
+
#
|
329
|
+
# RAISES
|
330
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
331
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
332
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
333
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
334
|
+
#
|
335
|
+
in0 = in1 = nil
|
336
|
+
puts obj.updateProject(in0, in1)
|
337
|
+
|
338
|
+
# SYNOPSIS
|
339
|
+
# getProjectByKey(in0, in1)
|
340
|
+
#
|
341
|
+
# ARGS
|
342
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
343
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
344
|
+
#
|
345
|
+
# RETURNS
|
346
|
+
# getProjectByKeyReturn RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
347
|
+
#
|
348
|
+
# RAISES
|
349
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
350
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
351
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
352
|
+
#
|
353
|
+
in0 = in1 = nil
|
354
|
+
puts obj.getProjectByKey(in0, in1)
|
355
|
+
|
356
|
+
# SYNOPSIS
|
357
|
+
# removeAllRoleActorsByProject(in0, in1)
|
358
|
+
#
|
359
|
+
# ARGS
|
360
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
361
|
+
# in1 RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
362
|
+
#
|
363
|
+
# RETURNS
|
364
|
+
# N/A
|
365
|
+
#
|
366
|
+
# RAISES
|
367
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
368
|
+
#
|
369
|
+
in0 = in1 = nil
|
370
|
+
puts obj.removeAllRoleActorsByProject(in0, in1)
|
371
|
+
|
372
|
+
# SYNOPSIS
|
373
|
+
# getPriorities(in0)
|
374
|
+
#
|
375
|
+
# ARGS
|
376
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
377
|
+
#
|
378
|
+
# RETURNS
|
379
|
+
# getPrioritiesReturn ArrayOf_tns1_RemotePriority - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePriority
|
380
|
+
#
|
381
|
+
# RAISES
|
382
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
383
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
384
|
+
#
|
385
|
+
in0 = nil
|
386
|
+
puts obj.getPriorities(in0)
|
387
|
+
|
388
|
+
# SYNOPSIS
|
389
|
+
# getResolutions(in0)
|
390
|
+
#
|
391
|
+
# ARGS
|
392
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
393
|
+
#
|
394
|
+
# RETURNS
|
395
|
+
# getResolutionsReturn ArrayOf_tns1_RemoteResolution - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteResolution
|
396
|
+
#
|
397
|
+
# RAISES
|
398
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
399
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
400
|
+
#
|
401
|
+
in0 = nil
|
402
|
+
puts obj.getResolutions(in0)
|
403
|
+
|
404
|
+
# SYNOPSIS
|
405
|
+
# getIssueTypes(in0)
|
406
|
+
#
|
407
|
+
# ARGS
|
408
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
409
|
+
#
|
410
|
+
# RETURNS
|
411
|
+
# getIssueTypesReturn ArrayOf_tns1_RemoteIssueType - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssueType
|
412
|
+
#
|
413
|
+
# RAISES
|
414
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
415
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
416
|
+
#
|
417
|
+
in0 = nil
|
418
|
+
puts obj.getIssueTypes(in0)
|
419
|
+
|
420
|
+
# SYNOPSIS
|
421
|
+
# getStatuses(in0)
|
422
|
+
#
|
423
|
+
# ARGS
|
424
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
425
|
+
#
|
426
|
+
# RETURNS
|
427
|
+
# getStatusesReturn ArrayOf_tns1_RemoteStatus - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteStatus
|
428
|
+
#
|
429
|
+
# RAISES
|
430
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
431
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
432
|
+
#
|
433
|
+
in0 = nil
|
434
|
+
puts obj.getStatuses(in0)
|
435
|
+
|
436
|
+
# SYNOPSIS
|
437
|
+
# getIssueTypesForProject(in0, in1)
|
438
|
+
#
|
439
|
+
# ARGS
|
440
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
441
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
442
|
+
#
|
443
|
+
# RETURNS
|
444
|
+
# getIssueTypesForProjectReturn ArrayOf_tns1_RemoteIssueType - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssueType
|
445
|
+
#
|
446
|
+
# RAISES
|
447
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
448
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
449
|
+
#
|
450
|
+
in0 = in1 = nil
|
451
|
+
puts obj.getIssueTypesForProject(in0, in1)
|
452
|
+
|
453
|
+
# SYNOPSIS
|
454
|
+
# getProjectRoles(in0)
|
455
|
+
#
|
456
|
+
# ARGS
|
457
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
458
|
+
#
|
459
|
+
# RETURNS
|
460
|
+
# getProjectRolesReturn ArrayOf_tns1_RemoteProjectRole - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteProjectRole
|
461
|
+
#
|
462
|
+
# RAISES
|
463
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
464
|
+
#
|
465
|
+
in0 = nil
|
466
|
+
puts obj.getProjectRoles(in0)
|
467
|
+
|
468
|
+
# SYNOPSIS
|
469
|
+
# getProjectRole(in0, in1)
|
470
|
+
#
|
471
|
+
# ARGS
|
472
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
473
|
+
# in1 Long - {http://www.w3.org/2001/XMLSchema}long
|
474
|
+
#
|
475
|
+
# RETURNS
|
476
|
+
# getProjectRoleReturn RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
477
|
+
#
|
478
|
+
# RAISES
|
479
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
480
|
+
#
|
481
|
+
in0 = in1 = nil
|
482
|
+
puts obj.getProjectRole(in0, in1)
|
483
|
+
|
484
|
+
# SYNOPSIS
|
485
|
+
# getProjectRoleActors(in0, in1, in2)
|
486
|
+
#
|
487
|
+
# ARGS
|
488
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
489
|
+
# in1 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
490
|
+
# in2 RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
491
|
+
#
|
492
|
+
# RETURNS
|
493
|
+
# getProjectRoleActorsReturn RemoteProjectRoleActors - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRoleActors
|
494
|
+
#
|
495
|
+
# RAISES
|
496
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
497
|
+
#
|
498
|
+
in0 = in1 = in2 = nil
|
499
|
+
puts obj.getProjectRoleActors(in0, in1, in2)
|
500
|
+
|
501
|
+
# SYNOPSIS
|
502
|
+
# getDefaultRoleActors(in0, in1)
|
503
|
+
#
|
504
|
+
# ARGS
|
505
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
506
|
+
# in1 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
507
|
+
#
|
508
|
+
# RETURNS
|
509
|
+
# getDefaultRoleActorsReturn RemoteRoleActors - {http://beans.soap.rpc.jira.atlassian.com}RemoteRoleActors
|
510
|
+
#
|
511
|
+
# RAISES
|
512
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
513
|
+
#
|
514
|
+
in0 = in1 = nil
|
515
|
+
puts obj.getDefaultRoleActors(in0, in1)
|
516
|
+
|
517
|
+
# SYNOPSIS
|
518
|
+
# removeAllRoleActorsByNameAndType(in0, in1, in2)
|
519
|
+
#
|
520
|
+
# ARGS
|
521
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
522
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
523
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
524
|
+
#
|
525
|
+
# RETURNS
|
526
|
+
# N/A
|
527
|
+
#
|
528
|
+
# RAISES
|
529
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
530
|
+
#
|
531
|
+
in0 = in1 = in2 = nil
|
532
|
+
puts obj.removeAllRoleActorsByNameAndType(in0, in1, in2)
|
533
|
+
|
534
|
+
# SYNOPSIS
|
535
|
+
# deleteProjectRole(in0, in1, in2)
|
536
|
+
#
|
537
|
+
# ARGS
|
538
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
539
|
+
# in1 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
540
|
+
# in2 Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
541
|
+
#
|
542
|
+
# RETURNS
|
543
|
+
# N/A
|
544
|
+
#
|
545
|
+
# RAISES
|
546
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
547
|
+
#
|
548
|
+
in0 = in1 = in2 = nil
|
549
|
+
puts obj.deleteProjectRole(in0, in1, in2)
|
550
|
+
|
551
|
+
# SYNOPSIS
|
552
|
+
# updateProjectRole(in0, in1)
|
553
|
+
#
|
554
|
+
# ARGS
|
555
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
556
|
+
# in1 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
557
|
+
#
|
558
|
+
# RETURNS
|
559
|
+
# N/A
|
560
|
+
#
|
561
|
+
# RAISES
|
562
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
563
|
+
#
|
564
|
+
in0 = in1 = nil
|
565
|
+
puts obj.updateProjectRole(in0, in1)
|
566
|
+
|
567
|
+
# SYNOPSIS
|
568
|
+
# createProjectRole(in0, in1)
|
569
|
+
#
|
570
|
+
# ARGS
|
571
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
572
|
+
# in1 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
573
|
+
#
|
574
|
+
# RETURNS
|
575
|
+
# createProjectRoleReturn RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
576
|
+
#
|
577
|
+
# RAISES
|
578
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
579
|
+
#
|
580
|
+
in0 = in1 = nil
|
581
|
+
puts obj.createProjectRole(in0, in1)
|
582
|
+
|
583
|
+
# SYNOPSIS
|
584
|
+
# isProjectRoleNameUnique(in0, in1)
|
585
|
+
#
|
586
|
+
# ARGS
|
587
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
588
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
589
|
+
#
|
590
|
+
# RETURNS
|
591
|
+
# isProjectRoleNameUniqueReturn Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
592
|
+
#
|
593
|
+
# RAISES
|
594
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
595
|
+
#
|
596
|
+
in0 = in1 = nil
|
597
|
+
puts obj.isProjectRoleNameUnique(in0, in1)
|
598
|
+
|
599
|
+
# SYNOPSIS
|
600
|
+
# addActorsToProjectRole(in0, in1, in2, in3, in4)
|
601
|
+
#
|
602
|
+
# ARGS
|
603
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
604
|
+
# in1 ArrayOf_xsd_string - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
|
605
|
+
# in2 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
606
|
+
# in3 RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
607
|
+
# in4 C_String - {http://www.w3.org/2001/XMLSchema}string
|
608
|
+
#
|
609
|
+
# RETURNS
|
610
|
+
# N/A
|
611
|
+
#
|
612
|
+
# RAISES
|
613
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
614
|
+
#
|
615
|
+
in0 = in1 = in2 = in3 = in4 = nil
|
616
|
+
puts obj.addActorsToProjectRole(in0, in1, in2, in3, in4)
|
617
|
+
|
618
|
+
# SYNOPSIS
|
619
|
+
# removeActorsFromProjectRole(in0, in1, in2, in3, in4)
|
620
|
+
#
|
621
|
+
# ARGS
|
622
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
623
|
+
# in1 ArrayOf_xsd_string - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
|
624
|
+
# in2 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
625
|
+
# in3 RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
626
|
+
# in4 C_String - {http://www.w3.org/2001/XMLSchema}string
|
627
|
+
#
|
628
|
+
# RETURNS
|
629
|
+
# N/A
|
630
|
+
#
|
631
|
+
# RAISES
|
632
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
633
|
+
#
|
634
|
+
in0 = in1 = in2 = in3 = in4 = nil
|
635
|
+
puts obj.removeActorsFromProjectRole(in0, in1, in2, in3, in4)
|
636
|
+
|
637
|
+
# SYNOPSIS
|
638
|
+
# addDefaultActorsToProjectRole(in0, in1, in2, in3)
|
639
|
+
#
|
640
|
+
# ARGS
|
641
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
642
|
+
# in1 ArrayOf_xsd_string - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
|
643
|
+
# in2 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
644
|
+
# in3 C_String - {http://www.w3.org/2001/XMLSchema}string
|
645
|
+
#
|
646
|
+
# RETURNS
|
647
|
+
# N/A
|
648
|
+
#
|
649
|
+
# RAISES
|
650
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
651
|
+
#
|
652
|
+
in0 = in1 = in2 = in3 = nil
|
653
|
+
puts obj.addDefaultActorsToProjectRole(in0, in1, in2, in3)
|
654
|
+
|
655
|
+
# SYNOPSIS
|
656
|
+
# removeDefaultActorsFromProjectRole(in0, in1, in2, in3)
|
657
|
+
#
|
658
|
+
# ARGS
|
659
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
660
|
+
# in1 ArrayOf_xsd_string - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
|
661
|
+
# in2 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
662
|
+
# in3 C_String - {http://www.w3.org/2001/XMLSchema}string
|
663
|
+
#
|
664
|
+
# RETURNS
|
665
|
+
# N/A
|
666
|
+
#
|
667
|
+
# RAISES
|
668
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
669
|
+
#
|
670
|
+
in0 = in1 = in2 = in3 = nil
|
671
|
+
puts obj.removeDefaultActorsFromProjectRole(in0, in1, in2, in3)
|
672
|
+
|
673
|
+
# SYNOPSIS
|
674
|
+
# getAssociatedNotificationSchemes(in0, in1)
|
675
|
+
#
|
676
|
+
# ARGS
|
677
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
678
|
+
# in1 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
679
|
+
#
|
680
|
+
# RETURNS
|
681
|
+
# getAssociatedNotificationSchemesReturn ArrayOf_tns1_RemoteScheme - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteScheme
|
682
|
+
#
|
683
|
+
# RAISES
|
684
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
685
|
+
#
|
686
|
+
in0 = in1 = nil
|
687
|
+
puts obj.getAssociatedNotificationSchemes(in0, in1)
|
688
|
+
|
689
|
+
# SYNOPSIS
|
690
|
+
# getAssociatedPermissionSchemes(in0, in1)
|
691
|
+
#
|
692
|
+
# ARGS
|
693
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
694
|
+
# in1 RemoteProjectRole - {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
695
|
+
#
|
696
|
+
# RETURNS
|
697
|
+
# getAssociatedPermissionSchemesReturn ArrayOf_tns1_RemoteScheme - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteScheme
|
698
|
+
#
|
699
|
+
# RAISES
|
700
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
701
|
+
#
|
702
|
+
in0 = in1 = nil
|
703
|
+
puts obj.getAssociatedPermissionSchemes(in0, in1)
|
704
|
+
|
705
|
+
# SYNOPSIS
|
706
|
+
# deleteProject(in0, in1)
|
707
|
+
#
|
708
|
+
# ARGS
|
709
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
710
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
711
|
+
#
|
712
|
+
# RETURNS
|
713
|
+
# N/A
|
714
|
+
#
|
715
|
+
# RAISES
|
716
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
717
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
718
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
719
|
+
#
|
720
|
+
in0 = in1 = nil
|
721
|
+
puts obj.deleteProject(in0, in1)
|
722
|
+
|
723
|
+
# SYNOPSIS
|
724
|
+
# getProjectById(in0, in1)
|
725
|
+
#
|
726
|
+
# ARGS
|
727
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
728
|
+
# in1 Long - {http://www.w3.org/2001/XMLSchema}long
|
729
|
+
#
|
730
|
+
# RETURNS
|
731
|
+
# getProjectByIdReturn RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
732
|
+
#
|
733
|
+
# RAISES
|
734
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
735
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
736
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
737
|
+
#
|
738
|
+
in0 = in1 = nil
|
739
|
+
puts obj.getProjectById(in0, in1)
|
740
|
+
|
741
|
+
# SYNOPSIS
|
742
|
+
# getCustomFields(in0)
|
743
|
+
#
|
744
|
+
# ARGS
|
745
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
746
|
+
#
|
747
|
+
# RETURNS
|
748
|
+
# getCustomFieldsReturn ArrayOf_tns1_RemoteField - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteField
|
749
|
+
#
|
750
|
+
# RAISES
|
751
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
752
|
+
#
|
753
|
+
in0 = nil
|
754
|
+
puts obj.getCustomFields(in0)
|
755
|
+
|
756
|
+
# SYNOPSIS
|
757
|
+
# getComments(in0, in1)
|
758
|
+
#
|
759
|
+
# ARGS
|
760
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
761
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
762
|
+
#
|
763
|
+
# RETURNS
|
764
|
+
# getCommentsReturn ArrayOf_tns1_RemoteComment - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteComment
|
765
|
+
#
|
766
|
+
# RAISES
|
767
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
768
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
769
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
770
|
+
#
|
771
|
+
in0 = in1 = nil
|
772
|
+
puts obj.getComments(in0, in1)
|
773
|
+
|
774
|
+
# SYNOPSIS
|
775
|
+
# getFavouriteFilters(in0)
|
776
|
+
#
|
777
|
+
# ARGS
|
778
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
779
|
+
#
|
780
|
+
# RETURNS
|
781
|
+
# getFavouriteFiltersReturn ArrayOf_tns1_RemoteFilter - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteFilter
|
782
|
+
#
|
783
|
+
# RAISES
|
784
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
785
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
786
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
787
|
+
#
|
788
|
+
in0 = nil
|
789
|
+
puts obj.getFavouriteFilters(in0)
|
790
|
+
|
791
|
+
# SYNOPSIS
|
792
|
+
# releaseVersion(in0, in1, in2)
|
793
|
+
#
|
794
|
+
# ARGS
|
795
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
796
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
797
|
+
# in2 RemoteVersion - {http://beans.soap.rpc.jira.atlassian.com}RemoteVersion
|
798
|
+
#
|
799
|
+
# RETURNS
|
800
|
+
# N/A
|
801
|
+
#
|
802
|
+
# RAISES
|
803
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
804
|
+
#
|
805
|
+
in0 = in1 = in2 = nil
|
806
|
+
puts obj.releaseVersion(in0, in1, in2)
|
807
|
+
|
808
|
+
# SYNOPSIS
|
809
|
+
# archiveVersion(in0, in1, in2, in3)
|
810
|
+
#
|
811
|
+
# ARGS
|
812
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
813
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
814
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
815
|
+
# in3 Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
816
|
+
#
|
817
|
+
# RETURNS
|
818
|
+
# N/A
|
819
|
+
#
|
820
|
+
# RAISES
|
821
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
822
|
+
#
|
823
|
+
in0 = in1 = in2 = in3 = nil
|
824
|
+
puts obj.archiveVersion(in0, in1, in2, in3)
|
825
|
+
|
826
|
+
# SYNOPSIS
|
827
|
+
# getFieldsForEdit(in0, in1)
|
828
|
+
#
|
829
|
+
# ARGS
|
830
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
831
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
832
|
+
#
|
833
|
+
# RETURNS
|
834
|
+
# getFieldsForEditReturn ArrayOf_tns1_RemoteField - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteField
|
835
|
+
#
|
836
|
+
# RAISES
|
837
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
838
|
+
#
|
839
|
+
in0 = in1 = nil
|
840
|
+
puts obj.getFieldsForEdit(in0, in1)
|
841
|
+
|
842
|
+
# SYNOPSIS
|
843
|
+
# getSubTaskIssueTypesForProject(in0, in1)
|
844
|
+
#
|
845
|
+
# ARGS
|
846
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
847
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
848
|
+
#
|
849
|
+
# RETURNS
|
850
|
+
# getSubTaskIssueTypesForProjectReturn ArrayOf_tns1_RemoteIssueType - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssueType
|
851
|
+
#
|
852
|
+
# RAISES
|
853
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
854
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
855
|
+
#
|
856
|
+
in0 = in1 = nil
|
857
|
+
puts obj.getSubTaskIssueTypesForProject(in0, in1)
|
858
|
+
|
859
|
+
# SYNOPSIS
|
860
|
+
# addUserToGroup(in0, in1, in2)
|
861
|
+
#
|
862
|
+
# ARGS
|
863
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
864
|
+
# in1 RemoteGroup - {http://beans.soap.rpc.jira.atlassian.com}RemoteGroup
|
865
|
+
# in2 RemoteUser - {http://beans.soap.rpc.jira.atlassian.com}RemoteUser
|
866
|
+
#
|
867
|
+
# RETURNS
|
868
|
+
# N/A
|
869
|
+
#
|
870
|
+
# RAISES
|
871
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
872
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
873
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
874
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
875
|
+
#
|
876
|
+
in0 = in1 = in2 = nil
|
877
|
+
puts obj.addUserToGroup(in0, in1, in2)
|
878
|
+
|
879
|
+
# SYNOPSIS
|
880
|
+
# removeUserFromGroup(in0, in1, in2)
|
881
|
+
#
|
882
|
+
# ARGS
|
883
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
884
|
+
# in1 RemoteGroup - {http://beans.soap.rpc.jira.atlassian.com}RemoteGroup
|
885
|
+
# in2 RemoteUser - {http://beans.soap.rpc.jira.atlassian.com}RemoteUser
|
886
|
+
#
|
887
|
+
# RETURNS
|
888
|
+
# N/A
|
889
|
+
#
|
890
|
+
# RAISES
|
891
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
892
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
893
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
894
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
895
|
+
#
|
896
|
+
in0 = in1 = in2 = nil
|
897
|
+
puts obj.removeUserFromGroup(in0, in1, in2)
|
898
|
+
|
899
|
+
# SYNOPSIS
|
900
|
+
# getSecurityLevel(in0, in1)
|
901
|
+
#
|
902
|
+
# ARGS
|
903
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
904
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
905
|
+
#
|
906
|
+
# RETURNS
|
907
|
+
# getSecurityLevelReturn RemoteSecurityLevel - {http://beans.soap.rpc.jira.atlassian.com}RemoteSecurityLevel
|
908
|
+
#
|
909
|
+
# RAISES
|
910
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
911
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
912
|
+
#
|
913
|
+
in0 = in1 = nil
|
914
|
+
puts obj.getSecurityLevel(in0, in1)
|
915
|
+
|
916
|
+
# SYNOPSIS
|
917
|
+
# logout(in0)
|
918
|
+
#
|
919
|
+
# ARGS
|
920
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
921
|
+
#
|
922
|
+
# RETURNS
|
923
|
+
# logoutReturn Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
924
|
+
#
|
925
|
+
in0 = nil
|
926
|
+
puts obj.logout(in0)
|
927
|
+
|
928
|
+
# SYNOPSIS
|
929
|
+
# addComment(in0, in1, in2)
|
930
|
+
#
|
931
|
+
# ARGS
|
932
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
933
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
934
|
+
# in2 RemoteComment - {http://beans.soap.rpc.jira.atlassian.com}RemoteComment
|
935
|
+
#
|
936
|
+
# RETURNS
|
937
|
+
# N/A
|
938
|
+
#
|
939
|
+
# RAISES
|
940
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
941
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
942
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
943
|
+
#
|
944
|
+
in0 = in1 = in2 = nil
|
945
|
+
puts obj.addComment(in0, in1, in2)
|
946
|
+
|
947
|
+
# SYNOPSIS
|
948
|
+
# getProjectWithSchemesById(in0, in1)
|
949
|
+
#
|
950
|
+
# ARGS
|
951
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
952
|
+
# in1 Long - {http://www.w3.org/2001/XMLSchema}long
|
953
|
+
#
|
954
|
+
# RETURNS
|
955
|
+
# getProjectWithSchemesByIdReturn RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
956
|
+
#
|
957
|
+
# RAISES
|
958
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
959
|
+
#
|
960
|
+
in0 = in1 = nil
|
961
|
+
puts obj.getProjectWithSchemesById(in0, in1)
|
962
|
+
|
963
|
+
# SYNOPSIS
|
964
|
+
# getSecurityLevels(in0, in1)
|
965
|
+
#
|
966
|
+
# ARGS
|
967
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
968
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
969
|
+
#
|
970
|
+
# RETURNS
|
971
|
+
# getSecurityLevelsReturn ArrayOf_tns1_RemoteSecurityLevel - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteSecurityLevel
|
972
|
+
#
|
973
|
+
# RAISES
|
974
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
975
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
976
|
+
#
|
977
|
+
in0 = in1 = nil
|
978
|
+
puts obj.getSecurityLevels(in0, in1)
|
979
|
+
|
980
|
+
# SYNOPSIS
|
981
|
+
# getProjectAvatars(in0, in1, in2)
|
982
|
+
#
|
983
|
+
# ARGS
|
984
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
985
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
986
|
+
# in2 Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
987
|
+
#
|
988
|
+
# RETURNS
|
989
|
+
# getProjectAvatarsReturn ArrayOf_tns1_RemoteAvatar - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteAvatar
|
990
|
+
#
|
991
|
+
# RAISES
|
992
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
993
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
994
|
+
#
|
995
|
+
in0 = in1 = in2 = nil
|
996
|
+
puts obj.getProjectAvatars(in0, in1, in2)
|
997
|
+
|
998
|
+
# SYNOPSIS
|
999
|
+
# setProjectAvatar(in0, in1, in2)
|
1000
|
+
#
|
1001
|
+
# ARGS
|
1002
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1003
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1004
|
+
# in2 Long - {http://www.w3.org/2001/XMLSchema}long
|
1005
|
+
#
|
1006
|
+
# RETURNS
|
1007
|
+
# N/A
|
1008
|
+
#
|
1009
|
+
# RAISES
|
1010
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1011
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1012
|
+
#
|
1013
|
+
in0 = in1 = in2 = nil
|
1014
|
+
puts obj.setProjectAvatar(in0, in1, in2)
|
1015
|
+
|
1016
|
+
# SYNOPSIS
|
1017
|
+
# getProjectAvatar(in0, in1)
|
1018
|
+
#
|
1019
|
+
# ARGS
|
1020
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1021
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1022
|
+
#
|
1023
|
+
# RETURNS
|
1024
|
+
# getProjectAvatarReturn RemoteAvatar - {http://beans.soap.rpc.jira.atlassian.com}RemoteAvatar
|
1025
|
+
#
|
1026
|
+
# RAISES
|
1027
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1028
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1029
|
+
#
|
1030
|
+
in0 = in1 = nil
|
1031
|
+
puts obj.getProjectAvatar(in0, in1)
|
1032
|
+
|
1033
|
+
# SYNOPSIS
|
1034
|
+
# deleteProjectAvatar(in0, in1)
|
1035
|
+
#
|
1036
|
+
# ARGS
|
1037
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1038
|
+
# in1 Long - {http://www.w3.org/2001/XMLSchema}long
|
1039
|
+
#
|
1040
|
+
# RETURNS
|
1041
|
+
# N/A
|
1042
|
+
#
|
1043
|
+
# RAISES
|
1044
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1045
|
+
#
|
1046
|
+
in0 = in1 = nil
|
1047
|
+
puts obj.deleteProjectAvatar(in0, in1)
|
1048
|
+
|
1049
|
+
# SYNOPSIS
|
1050
|
+
# getNotificationSchemes(in0)
|
1051
|
+
#
|
1052
|
+
# ARGS
|
1053
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1054
|
+
#
|
1055
|
+
# RETURNS
|
1056
|
+
# getNotificationSchemesReturn ArrayOf_tns1_RemoteScheme - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteScheme
|
1057
|
+
#
|
1058
|
+
# RAISES
|
1059
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1060
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1061
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1062
|
+
#
|
1063
|
+
in0 = nil
|
1064
|
+
puts obj.getNotificationSchemes(in0)
|
1065
|
+
|
1066
|
+
# SYNOPSIS
|
1067
|
+
# getPermissionSchemes(in0)
|
1068
|
+
#
|
1069
|
+
# ARGS
|
1070
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1071
|
+
#
|
1072
|
+
# RETURNS
|
1073
|
+
# getPermissionSchemesReturn ArrayOf_tns1_RemotePermissionScheme - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePermissionScheme
|
1074
|
+
#
|
1075
|
+
# RAISES
|
1076
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1077
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1078
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1079
|
+
#
|
1080
|
+
in0 = nil
|
1081
|
+
puts obj.getPermissionSchemes(in0)
|
1082
|
+
|
1083
|
+
# SYNOPSIS
|
1084
|
+
# getAllPermissions(in0)
|
1085
|
+
#
|
1086
|
+
# ARGS
|
1087
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1088
|
+
#
|
1089
|
+
# RETURNS
|
1090
|
+
# getAllPermissionsReturn ArrayOf_tns1_RemotePermission - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePermission
|
1091
|
+
#
|
1092
|
+
# RAISES
|
1093
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1094
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1095
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1096
|
+
#
|
1097
|
+
in0 = nil
|
1098
|
+
puts obj.getAllPermissions(in0)
|
1099
|
+
|
1100
|
+
# SYNOPSIS
|
1101
|
+
# createPermissionScheme(in0, in1, in2)
|
1102
|
+
#
|
1103
|
+
# ARGS
|
1104
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1105
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1106
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1107
|
+
#
|
1108
|
+
# RETURNS
|
1109
|
+
# createPermissionSchemeReturn RemotePermissionScheme - {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionScheme
|
1110
|
+
#
|
1111
|
+
# RAISES
|
1112
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1113
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1114
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1115
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1116
|
+
#
|
1117
|
+
in0 = in1 = in2 = nil
|
1118
|
+
puts obj.createPermissionScheme(in0, in1, in2)
|
1119
|
+
|
1120
|
+
# SYNOPSIS
|
1121
|
+
# addPermissionTo(in0, in1, in2, in3)
|
1122
|
+
#
|
1123
|
+
# ARGS
|
1124
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1125
|
+
# in1 RemotePermissionScheme - {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionScheme
|
1126
|
+
# in2 RemotePermission - {http://beans.soap.rpc.jira.atlassian.com}RemotePermission
|
1127
|
+
# in3 RemoteEntity - {http://beans.soap.rpc.jira.atlassian.com}RemoteEntity
|
1128
|
+
#
|
1129
|
+
# RETURNS
|
1130
|
+
# addPermissionToReturn RemotePermissionScheme - {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionScheme
|
1131
|
+
#
|
1132
|
+
# RAISES
|
1133
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1134
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1135
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1136
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1137
|
+
#
|
1138
|
+
in0 = in1 = in2 = in3 = nil
|
1139
|
+
puts obj.addPermissionTo(in0, in1, in2, in3)
|
1140
|
+
|
1141
|
+
# SYNOPSIS
|
1142
|
+
# deletePermissionFrom(in0, in1, in2, in3)
|
1143
|
+
#
|
1144
|
+
# ARGS
|
1145
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1146
|
+
# in1 RemotePermissionScheme - {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionScheme
|
1147
|
+
# in2 RemotePermission - {http://beans.soap.rpc.jira.atlassian.com}RemotePermission
|
1148
|
+
# in3 RemoteEntity - {http://beans.soap.rpc.jira.atlassian.com}RemoteEntity
|
1149
|
+
#
|
1150
|
+
# RETURNS
|
1151
|
+
# deletePermissionFromReturn RemotePermissionScheme - {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionScheme
|
1152
|
+
#
|
1153
|
+
# RAISES
|
1154
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1155
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1156
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1157
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1158
|
+
#
|
1159
|
+
in0 = in1 = in2 = in3 = nil
|
1160
|
+
puts obj.deletePermissionFrom(in0, in1, in2, in3)
|
1161
|
+
|
1162
|
+
# SYNOPSIS
|
1163
|
+
# deletePermissionScheme(in0, in1)
|
1164
|
+
#
|
1165
|
+
# ARGS
|
1166
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1167
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1168
|
+
#
|
1169
|
+
# RETURNS
|
1170
|
+
# N/A
|
1171
|
+
#
|
1172
|
+
# RAISES
|
1173
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1174
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1175
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1176
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1177
|
+
#
|
1178
|
+
in0 = in1 = nil
|
1179
|
+
puts obj.deletePermissionScheme(in0, in1)
|
1180
|
+
|
1181
|
+
# SYNOPSIS
|
1182
|
+
# createIssueWithSecurityLevel(in0, in1, in2)
|
1183
|
+
#
|
1184
|
+
# ARGS
|
1185
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1186
|
+
# in1 RemoteIssue - {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
|
1187
|
+
# in2 Long - {http://www.w3.org/2001/XMLSchema}long
|
1188
|
+
#
|
1189
|
+
# RETURNS
|
1190
|
+
# createIssueWithSecurityLevelReturn RemoteIssue - {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
|
1191
|
+
#
|
1192
|
+
# RAISES
|
1193
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1194
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1195
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1196
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1197
|
+
#
|
1198
|
+
in0 = in1 = in2 = nil
|
1199
|
+
puts obj.createIssueWithSecurityLevel(in0, in1, in2)
|
1200
|
+
|
1201
|
+
# SYNOPSIS
|
1202
|
+
# addAttachmentsToIssue(in0, in1, in2, in3)
|
1203
|
+
#
|
1204
|
+
# ARGS
|
1205
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1206
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1207
|
+
# in2 ArrayOf_xsd_string - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
|
1208
|
+
# in3 ArrayOf_xsd_base64Binary - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_base64Binary
|
1209
|
+
#
|
1210
|
+
# RETURNS
|
1211
|
+
# addAttachmentsToIssueReturn Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
1212
|
+
#
|
1213
|
+
# RAISES
|
1214
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1215
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1216
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1217
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1218
|
+
#
|
1219
|
+
in0 = in1 = in2 = in3 = nil
|
1220
|
+
puts obj.addAttachmentsToIssue(in0, in1, in2, in3)
|
1221
|
+
|
1222
|
+
# SYNOPSIS
|
1223
|
+
# getAttachmentsFromIssue(in0, in1)
|
1224
|
+
#
|
1225
|
+
# ARGS
|
1226
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1227
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1228
|
+
#
|
1229
|
+
# RETURNS
|
1230
|
+
# getAttachmentsFromIssueReturn ArrayOf_tns1_RemoteAttachment - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteAttachment
|
1231
|
+
#
|
1232
|
+
# RAISES
|
1233
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1234
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1235
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1236
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1237
|
+
#
|
1238
|
+
in0 = in1 = nil
|
1239
|
+
puts obj.getAttachmentsFromIssue(in0, in1)
|
1240
|
+
|
1241
|
+
# SYNOPSIS
|
1242
|
+
# hasPermissionToEditComment(in0, in1)
|
1243
|
+
#
|
1244
|
+
# ARGS
|
1245
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1246
|
+
# in1 RemoteComment - {http://beans.soap.rpc.jira.atlassian.com}RemoteComment
|
1247
|
+
#
|
1248
|
+
# RETURNS
|
1249
|
+
# hasPermissionToEditCommentReturn Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
1250
|
+
#
|
1251
|
+
# RAISES
|
1252
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1253
|
+
#
|
1254
|
+
in0 = in1 = nil
|
1255
|
+
puts obj.hasPermissionToEditComment(in0, in1)
|
1256
|
+
|
1257
|
+
# SYNOPSIS
|
1258
|
+
# editComment(in0, in1)
|
1259
|
+
#
|
1260
|
+
# ARGS
|
1261
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1262
|
+
# in1 RemoteComment - {http://beans.soap.rpc.jira.atlassian.com}RemoteComment
|
1263
|
+
#
|
1264
|
+
# RETURNS
|
1265
|
+
# editCommentReturn RemoteComment - {http://beans.soap.rpc.jira.atlassian.com}RemoteComment
|
1266
|
+
#
|
1267
|
+
# RAISES
|
1268
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1269
|
+
#
|
1270
|
+
in0 = in1 = nil
|
1271
|
+
puts obj.editComment(in0, in1)
|
1272
|
+
|
1273
|
+
# SYNOPSIS
|
1274
|
+
# getFieldsForAction(in0, in1, in2)
|
1275
|
+
#
|
1276
|
+
# ARGS
|
1277
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1278
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1279
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1280
|
+
#
|
1281
|
+
# RETURNS
|
1282
|
+
# getFieldsForActionReturn ArrayOf_tns1_RemoteField - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteField
|
1283
|
+
#
|
1284
|
+
# RAISES
|
1285
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1286
|
+
#
|
1287
|
+
in0 = in1 = in2 = nil
|
1288
|
+
puts obj.getFieldsForAction(in0, in1, in2)
|
1289
|
+
|
1290
|
+
# SYNOPSIS
|
1291
|
+
# progressWorkflowAction(in0, in1, in2, in3)
|
1292
|
+
#
|
1293
|
+
# ARGS
|
1294
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1295
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1296
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1297
|
+
# in3 ArrayOf_tns1_RemoteFieldValue - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteFieldValue
|
1298
|
+
#
|
1299
|
+
# RETURNS
|
1300
|
+
# progressWorkflowActionReturn RemoteIssue - {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
|
1301
|
+
#
|
1302
|
+
# RAISES
|
1303
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1304
|
+
#
|
1305
|
+
in0 = in1 = in2 = in3 = nil
|
1306
|
+
puts obj.progressWorkflowAction(in0, in1, in2, in3)
|
1307
|
+
|
1308
|
+
# SYNOPSIS
|
1309
|
+
# getIssueById(in0, in1)
|
1310
|
+
#
|
1311
|
+
# ARGS
|
1312
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1313
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1314
|
+
#
|
1315
|
+
# RETURNS
|
1316
|
+
# getIssueByIdReturn RemoteIssue - {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
|
1317
|
+
#
|
1318
|
+
# RAISES
|
1319
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1320
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1321
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1322
|
+
#
|
1323
|
+
in0 = in1 = nil
|
1324
|
+
puts obj.getIssueById(in0, in1)
|
1325
|
+
|
1326
|
+
# SYNOPSIS
|
1327
|
+
# addWorklogWithNewRemainingEstimate(in0, in1, in2, in3)
|
1328
|
+
#
|
1329
|
+
# ARGS
|
1330
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1331
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1332
|
+
# in2 RemoteWorklog - {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
1333
|
+
# in3 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1334
|
+
#
|
1335
|
+
# RETURNS
|
1336
|
+
# addWorklogWithNewRemainingEstimateReturn RemoteWorklog - {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
1337
|
+
#
|
1338
|
+
# RAISES
|
1339
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1340
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1341
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1342
|
+
#
|
1343
|
+
in0 = in1 = in2 = in3 = nil
|
1344
|
+
puts obj.addWorklogWithNewRemainingEstimate(in0, in1, in2, in3)
|
1345
|
+
|
1346
|
+
# SYNOPSIS
|
1347
|
+
# addWorklogAndAutoAdjustRemainingEstimate(in0, in1, in2)
|
1348
|
+
#
|
1349
|
+
# ARGS
|
1350
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1351
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1352
|
+
# in2 RemoteWorklog - {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
1353
|
+
#
|
1354
|
+
# RETURNS
|
1355
|
+
# addWorklogAndAutoAdjustRemainingEstimateReturn RemoteWorklog - {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
1356
|
+
#
|
1357
|
+
# RAISES
|
1358
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1359
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1360
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1361
|
+
#
|
1362
|
+
in0 = in1 = in2 = nil
|
1363
|
+
puts obj.addWorklogAndAutoAdjustRemainingEstimate(in0, in1, in2)
|
1364
|
+
|
1365
|
+
# SYNOPSIS
|
1366
|
+
# addWorklogAndRetainRemainingEstimate(in0, in1, in2)
|
1367
|
+
#
|
1368
|
+
# ARGS
|
1369
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1370
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1371
|
+
# in2 RemoteWorklog - {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
1372
|
+
#
|
1373
|
+
# RETURNS
|
1374
|
+
# addWorklogAndRetainRemainingEstimateReturn RemoteWorklog - {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
1375
|
+
#
|
1376
|
+
# RAISES
|
1377
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1378
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1379
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1380
|
+
#
|
1381
|
+
in0 = in1 = in2 = nil
|
1382
|
+
puts obj.addWorklogAndRetainRemainingEstimate(in0, in1, in2)
|
1383
|
+
|
1384
|
+
# SYNOPSIS
|
1385
|
+
# deleteWorklogWithNewRemainingEstimate(in0, in1, in2)
|
1386
|
+
#
|
1387
|
+
# ARGS
|
1388
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1389
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1390
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1391
|
+
#
|
1392
|
+
# RETURNS
|
1393
|
+
# N/A
|
1394
|
+
#
|
1395
|
+
# RAISES
|
1396
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1397
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1398
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1399
|
+
#
|
1400
|
+
in0 = in1 = in2 = nil
|
1401
|
+
puts obj.deleteWorklogWithNewRemainingEstimate(in0, in1, in2)
|
1402
|
+
|
1403
|
+
# SYNOPSIS
|
1404
|
+
# deleteWorklogAndAutoAdjustRemainingEstimate(in0, in1)
|
1405
|
+
#
|
1406
|
+
# ARGS
|
1407
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1408
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1409
|
+
#
|
1410
|
+
# RETURNS
|
1411
|
+
# N/A
|
1412
|
+
#
|
1413
|
+
# RAISES
|
1414
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1415
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1416
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1417
|
+
#
|
1418
|
+
in0 = in1 = nil
|
1419
|
+
puts obj.deleteWorklogAndAutoAdjustRemainingEstimate(in0, in1)
|
1420
|
+
|
1421
|
+
# SYNOPSIS
|
1422
|
+
# deleteWorklogAndRetainRemainingEstimate(in0, in1)
|
1423
|
+
#
|
1424
|
+
# ARGS
|
1425
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1426
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1427
|
+
#
|
1428
|
+
# RETURNS
|
1429
|
+
# N/A
|
1430
|
+
#
|
1431
|
+
# RAISES
|
1432
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1433
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1434
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1435
|
+
#
|
1436
|
+
in0 = in1 = nil
|
1437
|
+
puts obj.deleteWorklogAndRetainRemainingEstimate(in0, in1)
|
1438
|
+
|
1439
|
+
# SYNOPSIS
|
1440
|
+
# updateWorklogWithNewRemainingEstimate(in0, in1, in2)
|
1441
|
+
#
|
1442
|
+
# ARGS
|
1443
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1444
|
+
# in1 RemoteWorklog - {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
1445
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1446
|
+
#
|
1447
|
+
# RETURNS
|
1448
|
+
# N/A
|
1449
|
+
#
|
1450
|
+
# RAISES
|
1451
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1452
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1453
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1454
|
+
#
|
1455
|
+
in0 = in1 = in2 = nil
|
1456
|
+
puts obj.updateWorklogWithNewRemainingEstimate(in0, in1, in2)
|
1457
|
+
|
1458
|
+
# SYNOPSIS
|
1459
|
+
# updateWorklogAndAutoAdjustRemainingEstimate(in0, in1)
|
1460
|
+
#
|
1461
|
+
# ARGS
|
1462
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1463
|
+
# in1 RemoteWorklog - {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
1464
|
+
#
|
1465
|
+
# RETURNS
|
1466
|
+
# N/A
|
1467
|
+
#
|
1468
|
+
# RAISES
|
1469
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1470
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1471
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1472
|
+
#
|
1473
|
+
in0 = in1 = nil
|
1474
|
+
puts obj.updateWorklogAndAutoAdjustRemainingEstimate(in0, in1)
|
1475
|
+
|
1476
|
+
# SYNOPSIS
|
1477
|
+
# updateWorklogAndRetainRemainingEstimate(in0, in1)
|
1478
|
+
#
|
1479
|
+
# ARGS
|
1480
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1481
|
+
# in1 RemoteWorklog - {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
1482
|
+
#
|
1483
|
+
# RETURNS
|
1484
|
+
# N/A
|
1485
|
+
#
|
1486
|
+
# RAISES
|
1487
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1488
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1489
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1490
|
+
#
|
1491
|
+
in0 = in1 = nil
|
1492
|
+
puts obj.updateWorklogAndRetainRemainingEstimate(in0, in1)
|
1493
|
+
|
1494
|
+
# SYNOPSIS
|
1495
|
+
# getWorklogs(in0, in1)
|
1496
|
+
#
|
1497
|
+
# ARGS
|
1498
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1499
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1500
|
+
#
|
1501
|
+
# RETURNS
|
1502
|
+
# getWorklogsReturn ArrayOf_tns1_RemoteWorklog - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteWorklog
|
1503
|
+
#
|
1504
|
+
# RAISES
|
1505
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1506
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1507
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1508
|
+
#
|
1509
|
+
in0 = in1 = nil
|
1510
|
+
puts obj.getWorklogs(in0, in1)
|
1511
|
+
|
1512
|
+
# SYNOPSIS
|
1513
|
+
# hasPermissionToCreateWorklog(in0, in1)
|
1514
|
+
#
|
1515
|
+
# ARGS
|
1516
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1517
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1518
|
+
#
|
1519
|
+
# RETURNS
|
1520
|
+
# hasPermissionToCreateWorklogReturn Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
1521
|
+
#
|
1522
|
+
# RAISES
|
1523
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1524
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1525
|
+
#
|
1526
|
+
in0 = in1 = nil
|
1527
|
+
puts obj.hasPermissionToCreateWorklog(in0, in1)
|
1528
|
+
|
1529
|
+
# SYNOPSIS
|
1530
|
+
# hasPermissionToDeleteWorklog(in0, in1)
|
1531
|
+
#
|
1532
|
+
# ARGS
|
1533
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1534
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1535
|
+
#
|
1536
|
+
# RETURNS
|
1537
|
+
# hasPermissionToDeleteWorklogReturn Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
1538
|
+
#
|
1539
|
+
# RAISES
|
1540
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1541
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1542
|
+
#
|
1543
|
+
in0 = in1 = nil
|
1544
|
+
puts obj.hasPermissionToDeleteWorklog(in0, in1)
|
1545
|
+
|
1546
|
+
# SYNOPSIS
|
1547
|
+
# hasPermissionToUpdateWorklog(in0, in1)
|
1548
|
+
#
|
1549
|
+
# ARGS
|
1550
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1551
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1552
|
+
#
|
1553
|
+
# RETURNS
|
1554
|
+
# hasPermissionToUpdateWorklogReturn Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
1555
|
+
#
|
1556
|
+
# RAISES
|
1557
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1558
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1559
|
+
#
|
1560
|
+
in0 = in1 = nil
|
1561
|
+
puts obj.hasPermissionToUpdateWorklog(in0, in1)
|
1562
|
+
|
1563
|
+
# SYNOPSIS
|
1564
|
+
# getResolutionDateByKey(in0, in1)
|
1565
|
+
#
|
1566
|
+
# ARGS
|
1567
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1568
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1569
|
+
#
|
1570
|
+
# RETURNS
|
1571
|
+
# getResolutionDateByKeyReturn DateTime - {http://www.w3.org/2001/XMLSchema}dateTime
|
1572
|
+
#
|
1573
|
+
# RAISES
|
1574
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1575
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1576
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1577
|
+
#
|
1578
|
+
in0 = in1 = nil
|
1579
|
+
puts obj.getResolutionDateByKey(in0, in1)
|
1580
|
+
|
1581
|
+
# SYNOPSIS
|
1582
|
+
# getResolutionDateById(in0, in1)
|
1583
|
+
#
|
1584
|
+
# ARGS
|
1585
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1586
|
+
# in1 Long - {http://www.w3.org/2001/XMLSchema}long
|
1587
|
+
#
|
1588
|
+
# RETURNS
|
1589
|
+
# getResolutionDateByIdReturn DateTime - {http://www.w3.org/2001/XMLSchema}dateTime
|
1590
|
+
#
|
1591
|
+
# RAISES
|
1592
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1593
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1594
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1595
|
+
#
|
1596
|
+
in0 = in1 = nil
|
1597
|
+
puts obj.getResolutionDateById(in0, in1)
|
1598
|
+
|
1599
|
+
# SYNOPSIS
|
1600
|
+
# getIssueCountForFilter(in0, in1)
|
1601
|
+
#
|
1602
|
+
# ARGS
|
1603
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1604
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1605
|
+
#
|
1606
|
+
# RETURNS
|
1607
|
+
# getIssueCountForFilterReturn Long - {http://www.w3.org/2001/XMLSchema}long
|
1608
|
+
#
|
1609
|
+
# RAISES
|
1610
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1611
|
+
#
|
1612
|
+
in0 = in1 = nil
|
1613
|
+
puts obj.getIssueCountForFilter(in0, in1)
|
1614
|
+
|
1615
|
+
# SYNOPSIS
|
1616
|
+
# getIssuesFromTextSearch(in0, in1)
|
1617
|
+
#
|
1618
|
+
# ARGS
|
1619
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1620
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1621
|
+
#
|
1622
|
+
# RETURNS
|
1623
|
+
# getIssuesFromTextSearchReturn ArrayOf_tns1_RemoteIssue - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssue
|
1624
|
+
#
|
1625
|
+
# RAISES
|
1626
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1627
|
+
#
|
1628
|
+
in0 = in1 = nil
|
1629
|
+
puts obj.getIssuesFromTextSearch(in0, in1)
|
1630
|
+
|
1631
|
+
# SYNOPSIS
|
1632
|
+
# getIssuesFromTextSearchWithProject(in0, in1, in2, in3)
|
1633
|
+
#
|
1634
|
+
# ARGS
|
1635
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1636
|
+
# in1 ArrayOf_xsd_string - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
|
1637
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1638
|
+
# in3 Int - {http://www.w3.org/2001/XMLSchema}int
|
1639
|
+
#
|
1640
|
+
# RETURNS
|
1641
|
+
# getIssuesFromTextSearchWithProjectReturn ArrayOf_tns1_RemoteIssue - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssue
|
1642
|
+
#
|
1643
|
+
# RAISES
|
1644
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1645
|
+
#
|
1646
|
+
in0 = in1 = in2 = in3 = nil
|
1647
|
+
puts obj.getIssuesFromTextSearchWithProject(in0, in1, in2, in3)
|
1648
|
+
|
1649
|
+
# SYNOPSIS
|
1650
|
+
# getIssuesFromJqlSearch(in0, in1, in2)
|
1651
|
+
#
|
1652
|
+
# ARGS
|
1653
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1654
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1655
|
+
# in2 Int - {http://www.w3.org/2001/XMLSchema}int
|
1656
|
+
#
|
1657
|
+
# RETURNS
|
1658
|
+
# getIssuesFromJqlSearchReturn ArrayOf_tns1_RemoteIssue - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssue
|
1659
|
+
#
|
1660
|
+
# RAISES
|
1661
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1662
|
+
#
|
1663
|
+
in0 = in1 = in2 = nil
|
1664
|
+
puts obj.getIssuesFromJqlSearch(in0, in1, in2)
|
1665
|
+
|
1666
|
+
# SYNOPSIS
|
1667
|
+
# deleteUser(in0, in1)
|
1668
|
+
#
|
1669
|
+
# ARGS
|
1670
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1671
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1672
|
+
#
|
1673
|
+
# RETURNS
|
1674
|
+
# N/A
|
1675
|
+
#
|
1676
|
+
# RAISES
|
1677
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1678
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1679
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1680
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1681
|
+
#
|
1682
|
+
in0 = in1 = nil
|
1683
|
+
puts obj.deleteUser(in0, in1)
|
1684
|
+
|
1685
|
+
# SYNOPSIS
|
1686
|
+
# updateGroup(in0, in1)
|
1687
|
+
#
|
1688
|
+
# ARGS
|
1689
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1690
|
+
# in1 RemoteGroup - {http://beans.soap.rpc.jira.atlassian.com}RemoteGroup
|
1691
|
+
#
|
1692
|
+
# RETURNS
|
1693
|
+
# updateGroupReturn RemoteGroup - {http://beans.soap.rpc.jira.atlassian.com}RemoteGroup
|
1694
|
+
#
|
1695
|
+
# RAISES
|
1696
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1697
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1698
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1699
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1700
|
+
#
|
1701
|
+
in0 = in1 = nil
|
1702
|
+
puts obj.updateGroup(in0, in1)
|
1703
|
+
|
1704
|
+
# SYNOPSIS
|
1705
|
+
# deleteGroup(in0, in1, in2)
|
1706
|
+
#
|
1707
|
+
# ARGS
|
1708
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1709
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1710
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1711
|
+
#
|
1712
|
+
# RETURNS
|
1713
|
+
# N/A
|
1714
|
+
#
|
1715
|
+
# RAISES
|
1716
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1717
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1718
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1719
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1720
|
+
#
|
1721
|
+
in0 = in1 = in2 = nil
|
1722
|
+
puts obj.deleteGroup(in0, in1, in2)
|
1723
|
+
|
1724
|
+
# SYNOPSIS
|
1725
|
+
# refreshCustomFields(in0)
|
1726
|
+
#
|
1727
|
+
# ARGS
|
1728
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1729
|
+
#
|
1730
|
+
# RETURNS
|
1731
|
+
# N/A
|
1732
|
+
#
|
1733
|
+
# RAISES
|
1734
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1735
|
+
#
|
1736
|
+
in0 = nil
|
1737
|
+
puts obj.refreshCustomFields(in0)
|
1738
|
+
|
1739
|
+
# SYNOPSIS
|
1740
|
+
# getSavedFilters(in0)
|
1741
|
+
#
|
1742
|
+
# ARGS
|
1743
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1744
|
+
#
|
1745
|
+
# RETURNS
|
1746
|
+
# getSavedFiltersReturn ArrayOf_tns1_RemoteFilter - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteFilter
|
1747
|
+
#
|
1748
|
+
# RAISES
|
1749
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1750
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1751
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1752
|
+
#
|
1753
|
+
in0 = nil
|
1754
|
+
puts obj.getSavedFilters(in0)
|
1755
|
+
|
1756
|
+
# SYNOPSIS
|
1757
|
+
# addBase64EncodedAttachmentsToIssue(in0, in1, in2, in3)
|
1758
|
+
#
|
1759
|
+
# ARGS
|
1760
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1761
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1762
|
+
# in2 ArrayOf_xsd_string - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
|
1763
|
+
# in3 ArrayOf_xsd_string - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
|
1764
|
+
#
|
1765
|
+
# RETURNS
|
1766
|
+
# addBase64EncodedAttachmentsToIssueReturn Boolean - {http://www.w3.org/2001/XMLSchema}boolean
|
1767
|
+
#
|
1768
|
+
# RAISES
|
1769
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1770
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1771
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1772
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1773
|
+
#
|
1774
|
+
in0 = in1 = in2 = in3 = nil
|
1775
|
+
puts obj.addBase64EncodedAttachmentsToIssue(in0, in1, in2, in3)
|
1776
|
+
|
1777
|
+
# SYNOPSIS
|
1778
|
+
# createProjectFromObject(in0, in1)
|
1779
|
+
#
|
1780
|
+
# ARGS
|
1781
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1782
|
+
# in1 RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
1783
|
+
#
|
1784
|
+
# RETURNS
|
1785
|
+
# createProjectFromObjectReturn RemoteProject - {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
1786
|
+
#
|
1787
|
+
# RAISES
|
1788
|
+
# fault RemoteValidationException - {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
1789
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1790
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1791
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1792
|
+
#
|
1793
|
+
in0 = in1 = nil
|
1794
|
+
puts obj.createProjectFromObject(in0, in1)
|
1795
|
+
|
1796
|
+
# SYNOPSIS
|
1797
|
+
# getSecuritySchemes(in0)
|
1798
|
+
#
|
1799
|
+
# ARGS
|
1800
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1801
|
+
#
|
1802
|
+
# RETURNS
|
1803
|
+
# getSecuritySchemesReturn ArrayOf_tns1_RemoteScheme - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteScheme
|
1804
|
+
#
|
1805
|
+
# RAISES
|
1806
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1807
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1808
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1809
|
+
#
|
1810
|
+
in0 = nil
|
1811
|
+
puts obj.getSecuritySchemes(in0)
|
1812
|
+
|
1813
|
+
# SYNOPSIS
|
1814
|
+
# addVersion(in0, in1, in2)
|
1815
|
+
#
|
1816
|
+
# ARGS
|
1817
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1818
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1819
|
+
# in2 RemoteVersion - {http://beans.soap.rpc.jira.atlassian.com}RemoteVersion
|
1820
|
+
#
|
1821
|
+
# RETURNS
|
1822
|
+
# addVersionReturn RemoteVersion - {http://beans.soap.rpc.jira.atlassian.com}RemoteVersion
|
1823
|
+
#
|
1824
|
+
# RAISES
|
1825
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1826
|
+
#
|
1827
|
+
in0 = in1 = in2 = nil
|
1828
|
+
puts obj.addVersion(in0, in1, in2)
|
1829
|
+
|
1830
|
+
# SYNOPSIS
|
1831
|
+
# getIssuesFromFilter(in0, in1)
|
1832
|
+
#
|
1833
|
+
# ARGS
|
1834
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1835
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1836
|
+
#
|
1837
|
+
# RETURNS
|
1838
|
+
# getIssuesFromFilterReturn ArrayOf_tns1_RemoteIssue - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssue
|
1839
|
+
#
|
1840
|
+
# RAISES
|
1841
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1842
|
+
#
|
1843
|
+
in0 = in1 = nil
|
1844
|
+
puts obj.getIssuesFromFilter(in0, in1)
|
1845
|
+
|
1846
|
+
# SYNOPSIS
|
1847
|
+
# getIssuesFromFilterWithLimit(in0, in1, in2, in3)
|
1848
|
+
#
|
1849
|
+
# ARGS
|
1850
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1851
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1852
|
+
# in2 Int - {http://www.w3.org/2001/XMLSchema}int
|
1853
|
+
# in3 Int - {http://www.w3.org/2001/XMLSchema}int
|
1854
|
+
#
|
1855
|
+
# RETURNS
|
1856
|
+
# getIssuesFromFilterWithLimitReturn ArrayOf_tns1_RemoteIssue - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssue
|
1857
|
+
#
|
1858
|
+
# RAISES
|
1859
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1860
|
+
#
|
1861
|
+
in0 = in1 = in2 = in3 = nil
|
1862
|
+
puts obj.getIssuesFromFilterWithLimit(in0, in1, in2, in3)
|
1863
|
+
|
1864
|
+
# SYNOPSIS
|
1865
|
+
# getIssuesFromTextSearchWithLimit(in0, in1, in2, in3)
|
1866
|
+
#
|
1867
|
+
# ARGS
|
1868
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1869
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1870
|
+
# in2 Int - {http://www.w3.org/2001/XMLSchema}int
|
1871
|
+
# in3 Int - {http://www.w3.org/2001/XMLSchema}int
|
1872
|
+
#
|
1873
|
+
# RETURNS
|
1874
|
+
# getIssuesFromTextSearchWithLimitReturn ArrayOf_tns1_RemoteIssue - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssue
|
1875
|
+
#
|
1876
|
+
# RAISES
|
1877
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1878
|
+
#
|
1879
|
+
in0 = in1 = in2 = in3 = nil
|
1880
|
+
puts obj.getIssuesFromTextSearchWithLimit(in0, in1, in2, in3)
|
1881
|
+
|
1882
|
+
# SYNOPSIS
|
1883
|
+
# getProjectsNoSchemes(in0)
|
1884
|
+
#
|
1885
|
+
# ARGS
|
1886
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1887
|
+
#
|
1888
|
+
# RETURNS
|
1889
|
+
# getProjectsNoSchemesReturn ArrayOf_tns1_RemoteProject - {https://issues.jboss.org/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteProject
|
1890
|
+
#
|
1891
|
+
# RAISES
|
1892
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1893
|
+
# fault RemoteAuthenticationException - {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
1894
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1895
|
+
#
|
1896
|
+
in0 = nil
|
1897
|
+
puts obj.getProjectsNoSchemes(in0)
|
1898
|
+
|
1899
|
+
# SYNOPSIS
|
1900
|
+
# setNewProjectAvatar(in0, in1, in2, in3)
|
1901
|
+
#
|
1902
|
+
# ARGS
|
1903
|
+
# in0 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1904
|
+
# in1 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1905
|
+
# in2 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1906
|
+
# in3 C_String - {http://www.w3.org/2001/XMLSchema}string
|
1907
|
+
#
|
1908
|
+
# RETURNS
|
1909
|
+
# N/A
|
1910
|
+
#
|
1911
|
+
# RAISES
|
1912
|
+
# fault RemotePermissionException - {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
1913
|
+
# fault RemoteException - {http://exception.rpc.jira.atlassian.com}RemoteException
|
1914
|
+
#
|
1915
|
+
in0 = in1 = in2 = in3 = nil
|
1916
|
+
puts obj.setNewProjectAvatar(in0, in1, in2, in3)
|
1917
|
+
|
1918
|
+
|
1919
|
+
|
1920
|
+
|
1921
|
+
end
|