JOT 1.0.2

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