jira4r-19 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +14 -0
- data/NOTICE +3 -0
- data/README.txt +12 -0
- data/Rakefile +131 -0
- data/lib/jira4r/jira4r.rb +34 -0
- data/lib/jira4r/jira_tool.rb +209 -0
- data/lib/jira4r/v2/JiraSoapServiceDriver.rb +982 -0
- data/lib/jira4r/v2/jiraService.rb +818 -0
- data/lib/jira4r/v2/jiraServiceMappingRegistry.rb +977 -0
- data/lib/jiraService.rb +21 -0
- data/lib/jiraServiceMappingRegistry.rb +21 -0
- data/wsdl/jirasoapservice-v2.wsdl +6019 -0
- metadata +68 -0
@@ -0,0 +1,818 @@
|
|
1
|
+
# encoding: ASCII-8BIT
|
2
|
+
require 'xsd/qname'
|
3
|
+
|
4
|
+
module Jira4R; module V2
|
5
|
+
|
6
|
+
|
7
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteComment
|
8
|
+
# author - SOAP::SOAPString
|
9
|
+
# body - SOAP::SOAPString
|
10
|
+
# created - SOAP::SOAPDateTime
|
11
|
+
# groupLevel - SOAP::SOAPString
|
12
|
+
# id - SOAP::SOAPString
|
13
|
+
# roleLevel - SOAP::SOAPString
|
14
|
+
# updateAuthor - SOAP::SOAPString
|
15
|
+
# updated - SOAP::SOAPDateTime
|
16
|
+
class RemoteComment
|
17
|
+
attr_accessor :author
|
18
|
+
attr_accessor :body
|
19
|
+
attr_accessor :created
|
20
|
+
attr_accessor :groupLevel
|
21
|
+
attr_accessor :id
|
22
|
+
attr_accessor :roleLevel
|
23
|
+
attr_accessor :updateAuthor
|
24
|
+
attr_accessor :updated
|
25
|
+
|
26
|
+
def initialize(author = nil, body = nil, created = nil, groupLevel = nil, id = nil, roleLevel = nil, updateAuthor = nil, updated = nil)
|
27
|
+
@author = author
|
28
|
+
@body = body
|
29
|
+
@created = created
|
30
|
+
@groupLevel = groupLevel
|
31
|
+
@id = id
|
32
|
+
@roleLevel = roleLevel
|
33
|
+
@updateAuthor = updateAuthor
|
34
|
+
@updated = updated
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteEntity
|
39
|
+
class RemoteEntity
|
40
|
+
def initialize
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteUser
|
45
|
+
# email - SOAP::SOAPString
|
46
|
+
# fullname - SOAP::SOAPString
|
47
|
+
# name - SOAP::SOAPString
|
48
|
+
class RemoteUser < RemoteEntity
|
49
|
+
attr_accessor :email
|
50
|
+
attr_accessor :fullname
|
51
|
+
attr_accessor :name
|
52
|
+
|
53
|
+
def initialize(email = nil, fullname = nil, name = nil)
|
54
|
+
@email = email
|
55
|
+
@fullname = fullname
|
56
|
+
@name = name
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteGroup
|
61
|
+
# name - SOAP::SOAPString
|
62
|
+
# users - Jira4R::V2::ArrayOf_tns1_RemoteUser
|
63
|
+
class RemoteGroup < RemoteEntity
|
64
|
+
attr_accessor :name
|
65
|
+
attr_accessor :users
|
66
|
+
|
67
|
+
def initialize(name = nil, users = nil)
|
68
|
+
@name = name
|
69
|
+
@users = users
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteServerInfo
|
74
|
+
# baseUrl - SOAP::SOAPString
|
75
|
+
# buildDate - SOAP::SOAPDateTime
|
76
|
+
# buildNumber - SOAP::SOAPString
|
77
|
+
# edition - SOAP::SOAPString
|
78
|
+
# version - SOAP::SOAPString
|
79
|
+
class RemoteServerInfo
|
80
|
+
attr_accessor :baseUrl
|
81
|
+
attr_accessor :buildDate
|
82
|
+
attr_accessor :buildNumber
|
83
|
+
attr_accessor :edition
|
84
|
+
attr_accessor :version
|
85
|
+
|
86
|
+
def initialize(baseUrl = nil, buildDate = nil, buildNumber = nil, edition = nil, version = nil)
|
87
|
+
@baseUrl = baseUrl
|
88
|
+
@buildDate = buildDate
|
89
|
+
@buildNumber = buildNumber
|
90
|
+
@edition = edition
|
91
|
+
@version = version
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
# {http://beans.soap.rpc.jira.atlassian.com}AbstractRemoteEntity
|
96
|
+
# abstract
|
97
|
+
# id - SOAP::SOAPString
|
98
|
+
class AbstractRemoteEntity
|
99
|
+
attr_accessor :id
|
100
|
+
|
101
|
+
def initialize(id = nil)
|
102
|
+
@id = id
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
# {http://beans.soap.rpc.jira.atlassian.com}AbstractNamedRemoteEntity
|
107
|
+
# abstract
|
108
|
+
# id - SOAP::SOAPString
|
109
|
+
# name - SOAP::SOAPString
|
110
|
+
class AbstractNamedRemoteEntity < AbstractRemoteEntity
|
111
|
+
attr_accessor :id
|
112
|
+
attr_accessor :name
|
113
|
+
|
114
|
+
def initialize(id = nil, name = nil)
|
115
|
+
@id = id
|
116
|
+
@name = name
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteVersion
|
121
|
+
# id - SOAP::SOAPString
|
122
|
+
# name - SOAP::SOAPString
|
123
|
+
# archived - SOAP::SOAPBoolean
|
124
|
+
# releaseDate - SOAP::SOAPDateTime
|
125
|
+
# released - SOAP::SOAPBoolean
|
126
|
+
# sequence - SOAP::SOAPLong
|
127
|
+
class RemoteVersion < AbstractNamedRemoteEntity
|
128
|
+
attr_accessor :id
|
129
|
+
attr_accessor :name
|
130
|
+
attr_accessor :archived
|
131
|
+
attr_accessor :releaseDate
|
132
|
+
attr_accessor :released
|
133
|
+
attr_accessor :sequence
|
134
|
+
|
135
|
+
def initialize(id = nil, name = nil, archived = nil, releaseDate = nil, released = nil, sequence = nil)
|
136
|
+
@id = id
|
137
|
+
@name = name
|
138
|
+
@archived = archived
|
139
|
+
@releaseDate = releaseDate
|
140
|
+
@released = released
|
141
|
+
@sequence = sequence
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteComponent
|
146
|
+
# id - SOAP::SOAPString
|
147
|
+
# name - SOAP::SOAPString
|
148
|
+
class RemoteComponent < AbstractNamedRemoteEntity
|
149
|
+
attr_accessor :id
|
150
|
+
attr_accessor :name
|
151
|
+
|
152
|
+
def initialize(id = nil, name = nil)
|
153
|
+
@id = id
|
154
|
+
@name = name
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteNamedObject
|
159
|
+
# id - SOAP::SOAPString
|
160
|
+
# name - SOAP::SOAPString
|
161
|
+
class RemoteNamedObject < AbstractNamedRemoteEntity
|
162
|
+
attr_accessor :id
|
163
|
+
attr_accessor :name
|
164
|
+
|
165
|
+
def initialize(id = nil, name = nil)
|
166
|
+
@id = id
|
167
|
+
@name = name
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteProject
|
172
|
+
# id - SOAP::SOAPString
|
173
|
+
# name - SOAP::SOAPString
|
174
|
+
# description - SOAP::SOAPString
|
175
|
+
# issueSecurityScheme - Jira4R::V2::RemoteScheme
|
176
|
+
# key - SOAP::SOAPString
|
177
|
+
# lead - SOAP::SOAPString
|
178
|
+
# notificationScheme - Jira4R::V2::RemoteScheme
|
179
|
+
# permissionScheme - Jira4R::V2::RemotePermissionScheme
|
180
|
+
# projectUrl - SOAP::SOAPString
|
181
|
+
# url - SOAP::SOAPString
|
182
|
+
class RemoteProject < AbstractNamedRemoteEntity
|
183
|
+
attr_accessor :id
|
184
|
+
attr_accessor :name
|
185
|
+
attr_accessor :description
|
186
|
+
attr_accessor :issueSecurityScheme
|
187
|
+
attr_accessor :key
|
188
|
+
attr_accessor :lead
|
189
|
+
attr_accessor :notificationScheme
|
190
|
+
attr_accessor :permissionScheme
|
191
|
+
attr_accessor :projectUrl
|
192
|
+
attr_accessor :url
|
193
|
+
|
194
|
+
def initialize(id = nil, name = nil, description = nil, issueSecurityScheme = nil, key = nil, lead = nil, notificationScheme = nil, permissionScheme = nil, projectUrl = nil, url = nil)
|
195
|
+
@id = id
|
196
|
+
@name = name
|
197
|
+
@description = description
|
198
|
+
@issueSecurityScheme = issueSecurityScheme
|
199
|
+
@key = key
|
200
|
+
@lead = lead
|
201
|
+
@notificationScheme = notificationScheme
|
202
|
+
@permissionScheme = permissionScheme
|
203
|
+
@projectUrl = projectUrl
|
204
|
+
@url = url
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
# {http://beans.soap.rpc.jira.atlassian.com}AbstractRemoteConstant
|
209
|
+
# abstract
|
210
|
+
# id - SOAP::SOAPString
|
211
|
+
# name - SOAP::SOAPString
|
212
|
+
# description - SOAP::SOAPString
|
213
|
+
# icon - SOAP::SOAPString
|
214
|
+
class AbstractRemoteConstant < AbstractNamedRemoteEntity
|
215
|
+
attr_accessor :id
|
216
|
+
attr_accessor :name
|
217
|
+
attr_accessor :description
|
218
|
+
attr_accessor :icon
|
219
|
+
|
220
|
+
def initialize(id = nil, name = nil, description = nil, icon = nil)
|
221
|
+
@id = id
|
222
|
+
@name = name
|
223
|
+
@description = description
|
224
|
+
@icon = icon
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemotePriority
|
229
|
+
# id - SOAP::SOAPString
|
230
|
+
# name - SOAP::SOAPString
|
231
|
+
# description - SOAP::SOAPString
|
232
|
+
# icon - SOAP::SOAPString
|
233
|
+
# color - SOAP::SOAPString
|
234
|
+
class RemotePriority < AbstractRemoteConstant
|
235
|
+
attr_accessor :id
|
236
|
+
attr_accessor :name
|
237
|
+
attr_accessor :description
|
238
|
+
attr_accessor :icon
|
239
|
+
attr_accessor :color
|
240
|
+
|
241
|
+
def initialize(id = nil, name = nil, description = nil, icon = nil, color = nil)
|
242
|
+
@id = id
|
243
|
+
@name = name
|
244
|
+
@description = description
|
245
|
+
@icon = icon
|
246
|
+
@color = color
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteResolution
|
251
|
+
# id - SOAP::SOAPString
|
252
|
+
# name - SOAP::SOAPString
|
253
|
+
# description - SOAP::SOAPString
|
254
|
+
# icon - SOAP::SOAPString
|
255
|
+
class RemoteResolution < AbstractRemoteConstant
|
256
|
+
attr_accessor :id
|
257
|
+
attr_accessor :name
|
258
|
+
attr_accessor :description
|
259
|
+
attr_accessor :icon
|
260
|
+
|
261
|
+
def initialize(id = nil, name = nil, description = nil, icon = nil)
|
262
|
+
@id = id
|
263
|
+
@name = name
|
264
|
+
@description = description
|
265
|
+
@icon = icon
|
266
|
+
end
|
267
|
+
end
|
268
|
+
|
269
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteIssueType
|
270
|
+
# id - SOAP::SOAPString
|
271
|
+
# name - SOAP::SOAPString
|
272
|
+
# description - SOAP::SOAPString
|
273
|
+
# icon - SOAP::SOAPString
|
274
|
+
# subTask - SOAP::SOAPBoolean
|
275
|
+
class RemoteIssueType < AbstractRemoteConstant
|
276
|
+
attr_accessor :id
|
277
|
+
attr_accessor :name
|
278
|
+
attr_accessor :description
|
279
|
+
attr_accessor :icon
|
280
|
+
attr_accessor :subTask
|
281
|
+
|
282
|
+
def initialize(id = nil, name = nil, description = nil, icon = nil, subTask = nil)
|
283
|
+
@id = id
|
284
|
+
@name = name
|
285
|
+
@description = description
|
286
|
+
@icon = icon
|
287
|
+
@subTask = subTask
|
288
|
+
end
|
289
|
+
end
|
290
|
+
|
291
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteStatus
|
292
|
+
# id - SOAP::SOAPString
|
293
|
+
# name - SOAP::SOAPString
|
294
|
+
# description - SOAP::SOAPString
|
295
|
+
# icon - SOAP::SOAPString
|
296
|
+
class RemoteStatus < AbstractRemoteConstant
|
297
|
+
attr_accessor :id
|
298
|
+
attr_accessor :name
|
299
|
+
attr_accessor :description
|
300
|
+
attr_accessor :icon
|
301
|
+
|
302
|
+
def initialize(id = nil, name = nil, description = nil, icon = nil)
|
303
|
+
@id = id
|
304
|
+
@name = name
|
305
|
+
@description = description
|
306
|
+
@icon = icon
|
307
|
+
end
|
308
|
+
end
|
309
|
+
|
310
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteField
|
311
|
+
# id - SOAP::SOAPString
|
312
|
+
# name - SOAP::SOAPString
|
313
|
+
class RemoteField < AbstractNamedRemoteEntity
|
314
|
+
attr_accessor :id
|
315
|
+
attr_accessor :name
|
316
|
+
|
317
|
+
def initialize(id = nil, name = nil)
|
318
|
+
@id = id
|
319
|
+
@name = name
|
320
|
+
end
|
321
|
+
end
|
322
|
+
|
323
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteFilter
|
324
|
+
# id - SOAP::SOAPString
|
325
|
+
# name - SOAP::SOAPString
|
326
|
+
# author - SOAP::SOAPString
|
327
|
+
# description - SOAP::SOAPString
|
328
|
+
# project - SOAP::SOAPString
|
329
|
+
# xml - SOAP::SOAPString
|
330
|
+
class RemoteFilter < AbstractNamedRemoteEntity
|
331
|
+
attr_accessor :id
|
332
|
+
attr_accessor :name
|
333
|
+
attr_accessor :author
|
334
|
+
attr_accessor :description
|
335
|
+
attr_accessor :project
|
336
|
+
attr_accessor :xml
|
337
|
+
|
338
|
+
def initialize(id = nil, name = nil, author = nil, description = nil, project = nil, xml = nil)
|
339
|
+
@id = id
|
340
|
+
@name = name
|
341
|
+
@author = author
|
342
|
+
@description = description
|
343
|
+
@project = project
|
344
|
+
@xml = xml
|
345
|
+
end
|
346
|
+
end
|
347
|
+
|
348
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteIssue
|
349
|
+
# id - SOAP::SOAPString
|
350
|
+
# affectsVersions - Jira4R::V2::ArrayOf_tns1_RemoteVersion
|
351
|
+
# assignee - SOAP::SOAPString
|
352
|
+
# attachmentNames - Jira4R::V2::ArrayOf_xsd_string
|
353
|
+
# components - Jira4R::V2::ArrayOf_tns1_RemoteComponent
|
354
|
+
# created - SOAP::SOAPDateTime
|
355
|
+
# customFieldValues - Jira4R::V2::ArrayOf_tns1_RemoteCustomFieldValue
|
356
|
+
# description - SOAP::SOAPString
|
357
|
+
# duedate - SOAP::SOAPDateTime
|
358
|
+
# environment - SOAP::SOAPString
|
359
|
+
# fixVersions - Jira4R::V2::ArrayOf_tns1_RemoteVersion
|
360
|
+
# key - SOAP::SOAPString
|
361
|
+
# priority - SOAP::SOAPString
|
362
|
+
# project - SOAP::SOAPString
|
363
|
+
# reporter - SOAP::SOAPString
|
364
|
+
# resolution - SOAP::SOAPString
|
365
|
+
# status - SOAP::SOAPString
|
366
|
+
# summary - SOAP::SOAPString
|
367
|
+
# type - SOAP::SOAPString
|
368
|
+
# updated - SOAP::SOAPDateTime
|
369
|
+
# votes - SOAP::SOAPLong
|
370
|
+
class RemoteIssue < AbstractRemoteEntity
|
371
|
+
attr_accessor :id
|
372
|
+
attr_accessor :affectsVersions
|
373
|
+
attr_accessor :assignee
|
374
|
+
attr_accessor :attachmentNames
|
375
|
+
attr_accessor :components
|
376
|
+
attr_accessor :created
|
377
|
+
attr_accessor :customFieldValues
|
378
|
+
attr_accessor :description
|
379
|
+
attr_accessor :duedate
|
380
|
+
attr_accessor :environment
|
381
|
+
attr_accessor :fixVersions
|
382
|
+
attr_accessor :key
|
383
|
+
attr_accessor :priority
|
384
|
+
attr_accessor :project
|
385
|
+
attr_accessor :reporter
|
386
|
+
attr_accessor :resolution
|
387
|
+
attr_accessor :status
|
388
|
+
attr_accessor :summary
|
389
|
+
attr_accessor :type
|
390
|
+
attr_accessor :updated
|
391
|
+
attr_accessor :votes
|
392
|
+
|
393
|
+
def initialize(id = nil, affectsVersions = nil, assignee = nil, attachmentNames = nil, components = nil, created = nil, customFieldValues = nil, description = nil, duedate = nil, environment = nil, fixVersions = nil, key = nil, priority = nil, project = nil, reporter = nil, resolution = nil, status = nil, summary = nil, type = nil, updated = nil, votes = nil)
|
394
|
+
@id = id
|
395
|
+
@affectsVersions = affectsVersions
|
396
|
+
@assignee = assignee
|
397
|
+
@attachmentNames = attachmentNames
|
398
|
+
@components = components
|
399
|
+
@created = created
|
400
|
+
@customFieldValues = customFieldValues
|
401
|
+
@description = description
|
402
|
+
@duedate = duedate
|
403
|
+
@environment = environment
|
404
|
+
@fixVersions = fixVersions
|
405
|
+
@key = key
|
406
|
+
@priority = priority
|
407
|
+
@project = project
|
408
|
+
@reporter = reporter
|
409
|
+
@resolution = resolution
|
410
|
+
@status = status
|
411
|
+
@summary = summary
|
412
|
+
@type = type
|
413
|
+
@updated = updated
|
414
|
+
@votes = votes
|
415
|
+
end
|
416
|
+
end
|
417
|
+
|
418
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteAttachment
|
419
|
+
# id - SOAP::SOAPString
|
420
|
+
# author - SOAP::SOAPString
|
421
|
+
# created - SOAP::SOAPDateTime
|
422
|
+
# filename - SOAP::SOAPString
|
423
|
+
# filesize - SOAP::SOAPLong
|
424
|
+
# mimetype - SOAP::SOAPString
|
425
|
+
class RemoteAttachment < AbstractRemoteEntity
|
426
|
+
attr_accessor :id
|
427
|
+
attr_accessor :author
|
428
|
+
attr_accessor :created
|
429
|
+
attr_accessor :filename
|
430
|
+
attr_accessor :filesize
|
431
|
+
attr_accessor :mimetype
|
432
|
+
|
433
|
+
def initialize(id = nil, author = nil, created = nil, filename = nil, filesize = nil, mimetype = nil)
|
434
|
+
@id = id
|
435
|
+
@author = author
|
436
|
+
@created = created
|
437
|
+
@filename = filename
|
438
|
+
@filesize = filesize
|
439
|
+
@mimetype = mimetype
|
440
|
+
end
|
441
|
+
end
|
442
|
+
|
443
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteCustomFieldValue
|
444
|
+
# customfieldId - SOAP::SOAPString
|
445
|
+
# key - SOAP::SOAPString
|
446
|
+
# values - Jira4R::V2::ArrayOf_xsd_string
|
447
|
+
class RemoteCustomFieldValue
|
448
|
+
attr_accessor :customfieldId
|
449
|
+
attr_accessor :key
|
450
|
+
attr_accessor :values
|
451
|
+
|
452
|
+
def initialize(customfieldId = nil, key = nil, values = nil)
|
453
|
+
@customfieldId = customfieldId
|
454
|
+
@key = key
|
455
|
+
@values = values
|
456
|
+
end
|
457
|
+
end
|
458
|
+
|
459
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteScheme
|
460
|
+
# description - SOAP::SOAPString
|
461
|
+
# id - SOAP::SOAPLong
|
462
|
+
# name - SOAP::SOAPString
|
463
|
+
# type - SOAP::SOAPString
|
464
|
+
class RemoteScheme
|
465
|
+
attr_accessor :description
|
466
|
+
attr_accessor :id
|
467
|
+
attr_accessor :name
|
468
|
+
attr_accessor :type
|
469
|
+
|
470
|
+
def initialize(description = nil, id = nil, name = nil, type = nil)
|
471
|
+
@description = description
|
472
|
+
@id = id
|
473
|
+
@name = name
|
474
|
+
@type = type
|
475
|
+
end
|
476
|
+
end
|
477
|
+
|
478
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionScheme
|
479
|
+
# description - SOAP::SOAPString
|
480
|
+
# id - SOAP::SOAPLong
|
481
|
+
# name - SOAP::SOAPString
|
482
|
+
# type - SOAP::SOAPString
|
483
|
+
# permissionMappings - Jira4R::V2::ArrayOf_tns1_RemotePermissionMapping
|
484
|
+
class RemotePermissionScheme < RemoteScheme
|
485
|
+
attr_accessor :description
|
486
|
+
attr_accessor :id
|
487
|
+
attr_accessor :name
|
488
|
+
attr_accessor :type
|
489
|
+
attr_accessor :permissionMappings
|
490
|
+
|
491
|
+
def initialize(description = nil, id = nil, name = nil, type = nil, permissionMappings = nil)
|
492
|
+
@description = description
|
493
|
+
@id = id
|
494
|
+
@name = name
|
495
|
+
@type = type
|
496
|
+
@permissionMappings = permissionMappings
|
497
|
+
end
|
498
|
+
end
|
499
|
+
|
500
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemotePermission
|
501
|
+
# name - SOAP::SOAPString
|
502
|
+
# permission - SOAP::SOAPLong
|
503
|
+
class RemotePermission
|
504
|
+
attr_accessor :name
|
505
|
+
attr_accessor :permission
|
506
|
+
|
507
|
+
def initialize(name = nil, permission = nil)
|
508
|
+
@name = name
|
509
|
+
@permission = permission
|
510
|
+
end
|
511
|
+
end
|
512
|
+
|
513
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemotePermissionMapping
|
514
|
+
# permission - Jira4R::V2::RemotePermission
|
515
|
+
# remoteEntities - Jira4R::V2::ArrayOf_tns1_RemoteEntity
|
516
|
+
class RemotePermissionMapping
|
517
|
+
attr_accessor :permission
|
518
|
+
attr_accessor :remoteEntities
|
519
|
+
|
520
|
+
def initialize(permission = nil, remoteEntities = nil)
|
521
|
+
@permission = permission
|
522
|
+
@remoteEntities = remoteEntities
|
523
|
+
end
|
524
|
+
end
|
525
|
+
|
526
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteFieldValue
|
527
|
+
# id - SOAP::SOAPString
|
528
|
+
# values - Jira4R::V2::ArrayOf_xsd_string
|
529
|
+
class RemoteFieldValue
|
530
|
+
attr_accessor :id
|
531
|
+
attr_accessor :values
|
532
|
+
|
533
|
+
def initialize(id = nil, values = nil)
|
534
|
+
@id = id
|
535
|
+
@values = values
|
536
|
+
end
|
537
|
+
end
|
538
|
+
|
539
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteConfiguration
|
540
|
+
# allowAttachments - SOAP::SOAPBoolean
|
541
|
+
# allowExternalUserManagment - SOAP::SOAPBoolean
|
542
|
+
# allowIssueLinking - SOAP::SOAPBoolean
|
543
|
+
# allowSubTasks - SOAP::SOAPBoolean
|
544
|
+
# allowTimeTracking - SOAP::SOAPBoolean
|
545
|
+
# allowUnassignedIssues - SOAP::SOAPBoolean
|
546
|
+
# allowVoting - SOAP::SOAPBoolean
|
547
|
+
# allowWatching - SOAP::SOAPBoolean
|
548
|
+
# timeTrackingDaysPerWeek - SOAP::SOAPInt
|
549
|
+
# timeTrackingHoursPerDay - SOAP::SOAPInt
|
550
|
+
class RemoteConfiguration
|
551
|
+
attr_accessor :allowAttachments
|
552
|
+
attr_accessor :allowExternalUserManagment
|
553
|
+
attr_accessor :allowIssueLinking
|
554
|
+
attr_accessor :allowSubTasks
|
555
|
+
attr_accessor :allowTimeTracking
|
556
|
+
attr_accessor :allowUnassignedIssues
|
557
|
+
attr_accessor :allowVoting
|
558
|
+
attr_accessor :allowWatching
|
559
|
+
attr_accessor :timeTrackingDaysPerWeek
|
560
|
+
attr_accessor :timeTrackingHoursPerDay
|
561
|
+
|
562
|
+
def initialize(allowAttachments = nil, allowExternalUserManagment = nil, allowIssueLinking = nil, allowSubTasks = nil, allowTimeTracking = nil, allowUnassignedIssues = nil, allowVoting = nil, allowWatching = nil, timeTrackingDaysPerWeek = nil, timeTrackingHoursPerDay = nil)
|
563
|
+
@allowAttachments = allowAttachments
|
564
|
+
@allowExternalUserManagment = allowExternalUserManagment
|
565
|
+
@allowIssueLinking = allowIssueLinking
|
566
|
+
@allowSubTasks = allowSubTasks
|
567
|
+
@allowTimeTracking = allowTimeTracking
|
568
|
+
@allowUnassignedIssues = allowUnassignedIssues
|
569
|
+
@allowVoting = allowVoting
|
570
|
+
@allowWatching = allowWatching
|
571
|
+
@timeTrackingDaysPerWeek = timeTrackingDaysPerWeek
|
572
|
+
@timeTrackingHoursPerDay = timeTrackingHoursPerDay
|
573
|
+
end
|
574
|
+
end
|
575
|
+
|
576
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRole
|
577
|
+
# description - SOAP::SOAPString
|
578
|
+
# id - SOAP::SOAPLong
|
579
|
+
# name - SOAP::SOAPString
|
580
|
+
class RemoteProjectRole
|
581
|
+
attr_accessor :description
|
582
|
+
attr_accessor :id
|
583
|
+
attr_accessor :name
|
584
|
+
|
585
|
+
def initialize(description = nil, id = nil, name = nil)
|
586
|
+
@description = description
|
587
|
+
@id = id
|
588
|
+
@name = name
|
589
|
+
end
|
590
|
+
end
|
591
|
+
|
592
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteRoleActor
|
593
|
+
# descriptor - SOAP::SOAPString
|
594
|
+
# parameter - SOAP::SOAPString
|
595
|
+
# projectRole - Jira4R::V2::RemoteProjectRole
|
596
|
+
# type - SOAP::SOAPString
|
597
|
+
# users - Jira4R::V2::ArrayOf_tns1_RemoteUser
|
598
|
+
class RemoteRoleActor
|
599
|
+
attr_accessor :descriptor
|
600
|
+
attr_accessor :parameter
|
601
|
+
attr_accessor :projectRole
|
602
|
+
attr_accessor :type
|
603
|
+
attr_accessor :users
|
604
|
+
|
605
|
+
def initialize(descriptor = nil, parameter = nil, projectRole = nil, type = nil, users = nil)
|
606
|
+
@descriptor = descriptor
|
607
|
+
@parameter = parameter
|
608
|
+
@projectRole = projectRole
|
609
|
+
@type = type
|
610
|
+
@users = users
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|
614
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteRoleActors
|
615
|
+
# projectRole - Jira4R::V2::RemoteProjectRole
|
616
|
+
# roleActors - Jira4R::V2::ArrayOf_tns1_RemoteRoleActor
|
617
|
+
# users - Jira4R::V2::ArrayOf_tns1_RemoteUser
|
618
|
+
class RemoteRoleActors
|
619
|
+
attr_accessor :projectRole
|
620
|
+
attr_accessor :roleActors
|
621
|
+
attr_accessor :users
|
622
|
+
|
623
|
+
def initialize(projectRole = nil, roleActors = nil, users = nil)
|
624
|
+
@projectRole = projectRole
|
625
|
+
@roleActors = roleActors
|
626
|
+
@users = users
|
627
|
+
end
|
628
|
+
end
|
629
|
+
|
630
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteProjectRoleActors
|
631
|
+
# projectRole - Jira4R::V2::RemoteProjectRole
|
632
|
+
# roleActors - Jira4R::V2::ArrayOf_tns1_RemoteRoleActor
|
633
|
+
# users - Jira4R::V2::ArrayOf_tns1_RemoteUser
|
634
|
+
# project - Jira4R::V2::RemoteProject
|
635
|
+
class RemoteProjectRoleActors < RemoteRoleActors
|
636
|
+
attr_accessor :projectRole
|
637
|
+
attr_accessor :roleActors
|
638
|
+
attr_accessor :users
|
639
|
+
attr_accessor :project
|
640
|
+
|
641
|
+
def initialize(projectRole = nil, roleActors = nil, users = nil, project = nil)
|
642
|
+
@projectRole = projectRole
|
643
|
+
@roleActors = roleActors
|
644
|
+
@users = users
|
645
|
+
@project = project
|
646
|
+
end
|
647
|
+
end
|
648
|
+
|
649
|
+
# {http://beans.soap.rpc.jira.atlassian.com}RemoteWorklog
|
650
|
+
# author - SOAP::SOAPString
|
651
|
+
# comment - SOAP::SOAPString
|
652
|
+
# created - SOAP::SOAPDateTime
|
653
|
+
# groupLevel - SOAP::SOAPString
|
654
|
+
# id - SOAP::SOAPString
|
655
|
+
# roleLevelId - SOAP::SOAPString
|
656
|
+
# startDate - SOAP::SOAPDateTime
|
657
|
+
# timeSpent - SOAP::SOAPString
|
658
|
+
# timeSpentInSeconds - SOAP::SOAPLong
|
659
|
+
# updateAuthor - SOAP::SOAPString
|
660
|
+
# updated - SOAP::SOAPDateTime
|
661
|
+
class RemoteWorklog
|
662
|
+
attr_accessor :author
|
663
|
+
attr_accessor :comment
|
664
|
+
attr_accessor :created
|
665
|
+
attr_accessor :groupLevel
|
666
|
+
attr_accessor :id
|
667
|
+
attr_accessor :roleLevelId
|
668
|
+
attr_accessor :startDate
|
669
|
+
attr_accessor :timeSpent
|
670
|
+
attr_accessor :timeSpentInSeconds
|
671
|
+
attr_accessor :updateAuthor
|
672
|
+
attr_accessor :updated
|
673
|
+
|
674
|
+
def initialize(author = nil, comment = nil, created = nil, groupLevel = nil, id = nil, roleLevelId = nil, startDate = nil, timeSpent = nil, timeSpentInSeconds = nil, updateAuthor = nil, updated = nil)
|
675
|
+
@author = author
|
676
|
+
@comment = comment
|
677
|
+
@created = created
|
678
|
+
@groupLevel = groupLevel
|
679
|
+
@id = id
|
680
|
+
@roleLevelId = roleLevelId
|
681
|
+
@startDate = startDate
|
682
|
+
@timeSpent = timeSpent
|
683
|
+
@timeSpentInSeconds = timeSpentInSeconds
|
684
|
+
@updateAuthor = updateAuthor
|
685
|
+
@updated = updated
|
686
|
+
end
|
687
|
+
end
|
688
|
+
|
689
|
+
# {http://exception.rpc.jira.atlassian.com}RemoteException
|
690
|
+
class RemoteException < ::StandardError
|
691
|
+
def initialize
|
692
|
+
end
|
693
|
+
end
|
694
|
+
|
695
|
+
# {http://exception.rpc.jira.atlassian.com}RemoteAuthenticationException
|
696
|
+
class RemoteAuthenticationException < ::StandardError
|
697
|
+
def initialize
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
701
|
+
# {http://exception.rpc.jira.atlassian.com}RemoteValidationException
|
702
|
+
class RemoteValidationException < ::StandardError
|
703
|
+
def initialize
|
704
|
+
end
|
705
|
+
end
|
706
|
+
|
707
|
+
# {http://exception.rpc.jira.atlassian.com}RemotePermissionException
|
708
|
+
class RemotePermissionException < ::StandardError
|
709
|
+
def initialize
|
710
|
+
end
|
711
|
+
end
|
712
|
+
|
713
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteUser
|
714
|
+
class ArrayOf_tns1_RemoteUser < ::Array
|
715
|
+
end
|
716
|
+
|
717
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteVersion
|
718
|
+
class ArrayOf_tns1_RemoteVersion < ::Array
|
719
|
+
end
|
720
|
+
|
721
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_string
|
722
|
+
class ArrayOf_xsd_string < ::Array
|
723
|
+
end
|
724
|
+
|
725
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteComponent
|
726
|
+
class ArrayOf_tns1_RemoteComponent < ::Array
|
727
|
+
end
|
728
|
+
|
729
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteCustomFieldValue
|
730
|
+
class ArrayOf_tns1_RemoteCustomFieldValue < ::Array
|
731
|
+
end
|
732
|
+
|
733
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteNamedObject
|
734
|
+
class ArrayOf_tns1_RemoteNamedObject < ::Array
|
735
|
+
end
|
736
|
+
|
737
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteEntity
|
738
|
+
class ArrayOf_tns1_RemoteEntity < ::Array
|
739
|
+
end
|
740
|
+
|
741
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePermissionMapping
|
742
|
+
class ArrayOf_tns1_RemotePermissionMapping < ::Array
|
743
|
+
end
|
744
|
+
|
745
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteProject
|
746
|
+
class ArrayOf_tns1_RemoteProject < ::Array
|
747
|
+
end
|
748
|
+
|
749
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteFieldValue
|
750
|
+
class ArrayOf_tns1_RemoteFieldValue < ::Array
|
751
|
+
end
|
752
|
+
|
753
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePriority
|
754
|
+
class ArrayOf_tns1_RemotePriority < ::Array
|
755
|
+
end
|
756
|
+
|
757
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteResolution
|
758
|
+
class ArrayOf_tns1_RemoteResolution < ::Array
|
759
|
+
end
|
760
|
+
|
761
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssueType
|
762
|
+
class ArrayOf_tns1_RemoteIssueType < ::Array
|
763
|
+
end
|
764
|
+
|
765
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteStatus
|
766
|
+
class ArrayOf_tns1_RemoteStatus < ::Array
|
767
|
+
end
|
768
|
+
|
769
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteProjectRole
|
770
|
+
class ArrayOf_tns1_RemoteProjectRole < ::Array
|
771
|
+
end
|
772
|
+
|
773
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteRoleActor
|
774
|
+
class ArrayOf_tns1_RemoteRoleActor < ::Array
|
775
|
+
end
|
776
|
+
|
777
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteScheme
|
778
|
+
class ArrayOf_tns1_RemoteScheme < ::Array
|
779
|
+
end
|
780
|
+
|
781
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteField
|
782
|
+
class ArrayOf_tns1_RemoteField < ::Array
|
783
|
+
end
|
784
|
+
|
785
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteFilter
|
786
|
+
class ArrayOf_tns1_RemoteFilter < ::Array
|
787
|
+
end
|
788
|
+
|
789
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteComment
|
790
|
+
class ArrayOf_tns1_RemoteComment < ::Array
|
791
|
+
end
|
792
|
+
|
793
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_xsd_base64Binary
|
794
|
+
class ArrayOf_xsd_base64Binary < ::Array
|
795
|
+
end
|
796
|
+
|
797
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteAttachment
|
798
|
+
class ArrayOf_tns1_RemoteAttachment < ::Array
|
799
|
+
end
|
800
|
+
|
801
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteWorklog
|
802
|
+
class ArrayOf_tns1_RemoteWorklog < ::Array
|
803
|
+
end
|
804
|
+
|
805
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePermissionScheme
|
806
|
+
class ArrayOf_tns1_RemotePermissionScheme < ::Array
|
807
|
+
end
|
808
|
+
|
809
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemotePermission
|
810
|
+
class ArrayOf_tns1_RemotePermission < ::Array
|
811
|
+
end
|
812
|
+
|
813
|
+
# {http://jira.atlassian.com/rpc/soap/jirasoapservice-v2}ArrayOf_tns1_RemoteIssue
|
814
|
+
class ArrayOf_tns1_RemoteIssue < ::Array
|
815
|
+
end
|
816
|
+
|
817
|
+
|
818
|
+
end; end
|