tomdz-jira4r 0.5.0.20120202102048

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1058 @@
1
+
2
+ require 'soap/mapping'
3
+
4
+ module Jira4R; module V2
5
+
6
+ module DefaultMappingRegistry
7
+ EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
8
+ LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
9
+ NsBeansSoapRpcJiraAtlassianCom = "http://beans.soap.rpc.jira.atlassian.com"
10
+ NsExceptionRpcJiraAtlassianCom = "http://exception.rpc.jira.atlassian.com"
11
+
12
+ EncodedRegistry.register(
13
+ :class => Jira4R::V2::RemoteComment,
14
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComment"),
15
+ :schema_element => [
16
+ ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
17
+ ["body", ["SOAP::SOAPString", XSD::QName.new(nil, "body")]],
18
+ ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
19
+ ["groupLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "groupLevel")]],
20
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
21
+ ["roleLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "roleLevel")]],
22
+ ["updateAuthor", ["SOAP::SOAPString", XSD::QName.new(nil, "updateAuthor")]],
23
+ ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]]
24
+ ]
25
+ )
26
+
27
+ EncodedRegistry.register(
28
+ :class => Jira4R::V2::RemoteTimeInfo,
29
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteTimeInfo"),
30
+ :schema_element => [
31
+ ["serverTime", ["SOAP::SOAPString", XSD::QName.new(nil, "serverTime")]],
32
+ ["timeZoneId", ["SOAP::SOAPString", XSD::QName.new(nil, "timeZoneId")]]
33
+ ]
34
+ )
35
+
36
+ EncodedRegistry.register(
37
+ :class => Jira4R::V2::RemoteServerInfo,
38
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteServerInfo"),
39
+ :schema_element => [
40
+ ["baseUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "baseUrl")]],
41
+ ["buildDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "buildDate")]],
42
+ ["buildNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "buildNumber")]],
43
+ ["edition", ["SOAP::SOAPString", XSD::QName.new(nil, "edition")]],
44
+ ["serverTime", ["Jira4R::V2::RemoteTimeInfo", XSD::QName.new(nil, "serverTime")]],
45
+ ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]]
46
+ ]
47
+ )
48
+
49
+ EncodedRegistry.register(
50
+ :class => Jira4R::V2::RemoteEntity,
51
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
52
+ :schema_element => []
53
+ )
54
+
55
+ EncodedRegistry.register(
56
+ :class => Jira4R::V2::RemoteUser,
57
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteUser"),
58
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
59
+ :schema_element => [
60
+ ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]],
61
+ ["fullname", ["SOAP::SOAPString", XSD::QName.new(nil, "fullname")]],
62
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
63
+ ]
64
+ )
65
+
66
+ EncodedRegistry.register(
67
+ :class => Jira4R::V2::RemoteGroup,
68
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteGroup"),
69
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
70
+ :schema_element => [
71
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
72
+ ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
73
+ ]
74
+ )
75
+
76
+ EncodedRegistry.register(
77
+ :class => Jira4R::V2::RemoteVersion,
78
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteVersion"),
79
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
80
+ :schema_element => [
81
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
82
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
83
+ ["archived", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "archived")]],
84
+ ["releaseDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "releaseDate")]],
85
+ ["released", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "released")]],
86
+ ["sequence", ["SOAP::SOAPLong", XSD::QName.new(nil, "sequence")]]
87
+ ]
88
+ )
89
+
90
+ EncodedRegistry.register(
91
+ :class => Jira4R::V2::RemoteComponent,
92
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComponent"),
93
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
94
+ :schema_element => [
95
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
96
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
97
+ ]
98
+ )
99
+
100
+ EncodedRegistry.register(
101
+ :class => Jira4R::V2::RemoteCustomFieldValue,
102
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteCustomFieldValue"),
103
+ :schema_element => [
104
+ ["customfieldId", ["SOAP::SOAPString", XSD::QName.new(nil, "customfieldId")]],
105
+ ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
106
+ ["values", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "values")]]
107
+ ]
108
+ )
109
+
110
+ EncodedRegistry.register(
111
+ :class => Jira4R::V2::RemoteIssue,
112
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssue"),
113
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteEntity"),
114
+ :schema_element => [
115
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
116
+ ["affectsVersions", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", XSD::QName.new(nil, "affectsVersions")]],
117
+ ["assignee", ["SOAP::SOAPString", XSD::QName.new(nil, "assignee")]],
118
+ ["attachmentNames", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "attachmentNames")]],
119
+ ["components", ["Jira4R::V2::ArrayOf_tns1_RemoteComponent", XSD::QName.new(nil, "components")]],
120
+ ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
121
+ ["customFieldValues", ["Jira4R::V2::ArrayOf_tns1_RemoteCustomFieldValue", XSD::QName.new(nil, "customFieldValues")]],
122
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
123
+ ["duedate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "duedate")]],
124
+ ["environment", ["SOAP::SOAPString", XSD::QName.new(nil, "environment")]],
125
+ ["fixVersions", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", XSD::QName.new(nil, "fixVersions")]],
126
+ ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
127
+ ["priority", ["SOAP::SOAPString", XSD::QName.new(nil, "priority")]],
128
+ ["project", ["SOAP::SOAPString", XSD::QName.new(nil, "project")]],
129
+ ["reporter", ["SOAP::SOAPString", XSD::QName.new(nil, "reporter")]],
130
+ ["resolution", ["SOAP::SOAPString", XSD::QName.new(nil, "resolution")]],
131
+ ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]],
132
+ ["summary", ["SOAP::SOAPString", XSD::QName.new(nil, "summary")]],
133
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
134
+ ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]],
135
+ ["votes", ["SOAP::SOAPLong", XSD::QName.new(nil, "votes")]]
136
+ ]
137
+ )
138
+
139
+ EncodedRegistry.register(
140
+ :class => Jira4R::V2::RemoteFieldValue,
141
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFieldValue"),
142
+ :schema_element => [
143
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
144
+ ["values", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "values")]]
145
+ ]
146
+ )
147
+
148
+ EncodedRegistry.register(
149
+ :class => Jira4R::V2::RemoteNamedObject,
150
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteNamedObject"),
151
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
152
+ :schema_element => [
153
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
154
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
155
+ ]
156
+ )
157
+
158
+ EncodedRegistry.register(
159
+ :class => Jira4R::V2::RemoteIssueType,
160
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssueType"),
161
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
162
+ :schema_element => [
163
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
164
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
165
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
166
+ ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]],
167
+ ["subTask", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "subTask")]]
168
+ ]
169
+ )
170
+
171
+ EncodedRegistry.register(
172
+ :class => Jira4R::V2::RemoteConfiguration,
173
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteConfiguration"),
174
+ :schema_element => [
175
+ ["allowAttachments", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowAttachments")]],
176
+ ["allowExternalUserManagment", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowExternalUserManagment")]],
177
+ ["allowIssueLinking", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowIssueLinking")]],
178
+ ["allowSubTasks", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowSubTasks")]],
179
+ ["allowTimeTracking", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowTimeTracking")]],
180
+ ["allowUnassignedIssues", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowUnassignedIssues")]],
181
+ ["allowVoting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowVoting")]],
182
+ ["allowWatching", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowWatching")]],
183
+ ["timeTrackingDaysPerWeek", ["SOAP::SOAPInt", XSD::QName.new(nil, "timeTrackingDaysPerWeek")]],
184
+ ["timeTrackingHoursPerDay", ["SOAP::SOAPInt", XSD::QName.new(nil, "timeTrackingHoursPerDay")]]
185
+ ]
186
+ )
187
+
188
+ EncodedRegistry.register(
189
+ :class => Jira4R::V2::RemoteScheme,
190
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme"),
191
+ :schema_element => [
192
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
193
+ ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
194
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
195
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]
196
+ ]
197
+ )
198
+
199
+ EncodedRegistry.register(
200
+ :class => Jira4R::V2::RemotePermission,
201
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermission"),
202
+ :schema_element => [
203
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
204
+ ["permission", ["SOAP::SOAPLong", XSD::QName.new(nil, "permission")]]
205
+ ]
206
+ )
207
+
208
+ EncodedRegistry.register(
209
+ :class => Jira4R::V2::RemotePermissionMapping,
210
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionMapping"),
211
+ :schema_element => [
212
+ ["permission", ["Jira4R::V2::RemotePermission", XSD::QName.new(nil, "permission")]],
213
+ ["remoteEntities", ["Jira4R::V2::ArrayOf_tns1_RemoteEntity", XSD::QName.new(nil, "remoteEntities")]]
214
+ ]
215
+ )
216
+
217
+ EncodedRegistry.register(
218
+ :class => Jira4R::V2::RemotePermissionScheme,
219
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionScheme"),
220
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme"),
221
+ :schema_element => [
222
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
223
+ ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
224
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
225
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
226
+ ["permissionMappings", ["Jira4R::V2::ArrayOf_tns1_RemotePermissionMapping", XSD::QName.new(nil, "permissionMappings")]]
227
+ ]
228
+ )
229
+
230
+ EncodedRegistry.register(
231
+ :class => Jira4R::V2::RemoteProject,
232
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProject"),
233
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
234
+ :schema_element => [
235
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
236
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
237
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
238
+ ["issueSecurityScheme", ["Jira4R::V2::RemoteScheme", XSD::QName.new(nil, "issueSecurityScheme")]],
239
+ ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
240
+ ["lead", ["SOAP::SOAPString", XSD::QName.new(nil, "lead")]],
241
+ ["notificationScheme", ["Jira4R::V2::RemoteScheme", XSD::QName.new(nil, "notificationScheme")]],
242
+ ["permissionScheme", ["Jira4R::V2::RemotePermissionScheme", XSD::QName.new(nil, "permissionScheme")]],
243
+ ["projectUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "projectUrl")]],
244
+ ["url", ["SOAP::SOAPString", XSD::QName.new(nil, "url")]]
245
+ ]
246
+ )
247
+
248
+ EncodedRegistry.register(
249
+ :class => Jira4R::V2::RemotePriority,
250
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePriority"),
251
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
252
+ :schema_element => [
253
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
254
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
255
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
256
+ ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]],
257
+ ["color", ["SOAP::SOAPString", XSD::QName.new(nil, "color")]]
258
+ ]
259
+ )
260
+
261
+ EncodedRegistry.register(
262
+ :class => Jira4R::V2::RemoteResolution,
263
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteResolution"),
264
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
265
+ :schema_element => [
266
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
267
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
268
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
269
+ ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]]
270
+ ]
271
+ )
272
+
273
+ EncodedRegistry.register(
274
+ :class => Jira4R::V2::RemoteStatus,
275
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteStatus"),
276
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
277
+ :schema_element => [
278
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
279
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
280
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
281
+ ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]]
282
+ ]
283
+ )
284
+
285
+ EncodedRegistry.register(
286
+ :class => Jira4R::V2::RemoteProjectRole,
287
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRole"),
288
+ :schema_element => [
289
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
290
+ ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
291
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
292
+ ]
293
+ )
294
+
295
+ EncodedRegistry.register(
296
+ :class => Jira4R::V2::RemoteRoleActor,
297
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActor"),
298
+ :schema_element => [
299
+ ["descriptor", ["SOAP::SOAPString", XSD::QName.new(nil, "descriptor")]],
300
+ ["parameter", ["SOAP::SOAPString", XSD::QName.new(nil, "parameter")]],
301
+ ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
302
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
303
+ ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
304
+ ]
305
+ )
306
+
307
+ EncodedRegistry.register(
308
+ :class => Jira4R::V2::RemoteRoleActors,
309
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActors"),
310
+ :schema_element => [
311
+ ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
312
+ ["roleActors", ["Jira4R::V2::ArrayOf_tns1_RemoteRoleActor", XSD::QName.new(nil, "roleActors")]],
313
+ ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
314
+ ]
315
+ )
316
+
317
+ EncodedRegistry.register(
318
+ :class => Jira4R::V2::RemoteProjectRoleActors,
319
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRoleActors"),
320
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActors"),
321
+ :schema_element => [
322
+ ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
323
+ ["roleActors", ["Jira4R::V2::ArrayOf_tns1_RemoteRoleActor", XSD::QName.new(nil, "roleActors")]],
324
+ ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]],
325
+ ["project", ["Jira4R::V2::RemoteProject", XSD::QName.new(nil, "project")]]
326
+ ]
327
+ )
328
+
329
+ EncodedRegistry.register(
330
+ :class => Jira4R::V2::RemoteField,
331
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteField"),
332
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
333
+ :schema_element => [
334
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
335
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
336
+ ]
337
+ )
338
+
339
+ EncodedRegistry.register(
340
+ :class => Jira4R::V2::RemoteFilter,
341
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFilter"),
342
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
343
+ :schema_element => [
344
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
345
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
346
+ ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
347
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
348
+ ["project", ["SOAP::SOAPString", XSD::QName.new(nil, "project")]],
349
+ ["xml", ["SOAP::SOAPString", XSD::QName.new(nil, "xml")]]
350
+ ]
351
+ )
352
+
353
+ EncodedRegistry.register(
354
+ :class => Jira4R::V2::RemoteSecurityLevel,
355
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteSecurityLevel"),
356
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
357
+ :schema_element => [
358
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
359
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
360
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]]
361
+ ]
362
+ )
363
+
364
+ EncodedRegistry.register(
365
+ :class => Jira4R::V2::RemoteAvatar,
366
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteAvatar"),
367
+ :schema_element => [
368
+ ["base64Data", ["SOAP::SOAPString", XSD::QName.new(nil, "base64Data")]],
369
+ ["contentType", ["SOAP::SOAPString", XSD::QName.new(nil, "contentType")]],
370
+ ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
371
+ ["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "owner")]],
372
+ ["system", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "system")]],
373
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]
374
+ ]
375
+ )
376
+
377
+ EncodedRegistry.register(
378
+ :class => Jira4R::V2::RemoteAttachment,
379
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteAttachment"),
380
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteEntity"),
381
+ :schema_element => [
382
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
383
+ ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
384
+ ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
385
+ ["filename", ["SOAP::SOAPString", XSD::QName.new(nil, "filename")]],
386
+ ["filesize", ["SOAP::SOAPLong", XSD::QName.new(nil, "filesize")]],
387
+ ["mimetype", ["SOAP::SOAPString", XSD::QName.new(nil, "mimetype")]]
388
+ ]
389
+ )
390
+
391
+ EncodedRegistry.register(
392
+ :class => Jira4R::V2::RemoteWorklog,
393
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteWorklog"),
394
+ :schema_element => [
395
+ ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
396
+ ["comment", ["SOAP::SOAPString", XSD::QName.new(nil, "comment")]],
397
+ ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
398
+ ["groupLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "groupLevel")]],
399
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
400
+ ["roleLevelId", ["SOAP::SOAPString", XSD::QName.new(nil, "roleLevelId")]],
401
+ ["startDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "startDate")]],
402
+ ["timeSpent", ["SOAP::SOAPString", XSD::QName.new(nil, "timeSpent")]],
403
+ ["timeSpentInSeconds", ["SOAP::SOAPLong", XSD::QName.new(nil, "timeSpentInSeconds")]],
404
+ ["updateAuthor", ["SOAP::SOAPString", XSD::QName.new(nil, "updateAuthor")]],
405
+ ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]]
406
+ ]
407
+ )
408
+
409
+ EncodedRegistry.register(
410
+ :class => Jira4R::V2::RemoteException,
411
+ :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
412
+ :schema_element => []
413
+ )
414
+
415
+ EncodedRegistry.register(
416
+ :class => Jira4R::V2::RemotePermissionException,
417
+ :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemotePermissionException"),
418
+ :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
419
+ :schema_element => []
420
+ )
421
+
422
+ EncodedRegistry.register(
423
+ :class => Jira4R::V2::RemoteValidationException,
424
+ :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteValidationException"),
425
+ :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
426
+ :schema_element => []
427
+ )
428
+
429
+ EncodedRegistry.register(
430
+ :class => Jira4R::V2::RemoteAuthenticationException,
431
+ :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteAuthenticationException"),
432
+ :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
433
+ :schema_element => []
434
+ )
435
+
436
+ EncodedRegistry.set(
437
+ Jira4R::V2::ArrayOf_tns1_RemoteUser,
438
+ ::SOAP::SOAPArray,
439
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
440
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteUser") }
441
+ )
442
+
443
+ EncodedRegistry.set(
444
+ Jira4R::V2::ArrayOf_tns1_RemoteVersion,
445
+ ::SOAP::SOAPArray,
446
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
447
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteVersion") }
448
+ )
449
+
450
+ EncodedRegistry.set(
451
+ Jira4R::V2::ArrayOf_xsd_string,
452
+ ::SOAP::SOAPArray,
453
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
454
+ { :type => XSD::QName.new("http://www.w3.org/2001/XMLSchema", "string") }
455
+ )
456
+
457
+ EncodedRegistry.set(
458
+ Jira4R::V2::ArrayOf_tns1_RemoteComponent,
459
+ ::SOAP::SOAPArray,
460
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
461
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComponent") }
462
+ )
463
+
464
+ EncodedRegistry.set(
465
+ Jira4R::V2::ArrayOf_tns1_RemoteCustomFieldValue,
466
+ ::SOAP::SOAPArray,
467
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
468
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteCustomFieldValue") }
469
+ )
470
+
471
+ EncodedRegistry.set(
472
+ Jira4R::V2::ArrayOf_tns1_RemoteFieldValue,
473
+ ::SOAP::SOAPArray,
474
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
475
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFieldValue") }
476
+ )
477
+
478
+ EncodedRegistry.set(
479
+ Jira4R::V2::ArrayOf_tns1_RemoteNamedObject,
480
+ ::SOAP::SOAPArray,
481
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
482
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteNamedObject") }
483
+ )
484
+
485
+ EncodedRegistry.set(
486
+ Jira4R::V2::ArrayOf_tns1_RemoteIssueType,
487
+ ::SOAP::SOAPArray,
488
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
489
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssueType") }
490
+ )
491
+
492
+ EncodedRegistry.set(
493
+ Jira4R::V2::ArrayOf_tns1_RemoteEntity,
494
+ ::SOAP::SOAPArray,
495
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
496
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity") }
497
+ )
498
+
499
+ EncodedRegistry.set(
500
+ Jira4R::V2::ArrayOf_tns1_RemotePermissionMapping,
501
+ ::SOAP::SOAPArray,
502
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
503
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionMapping") }
504
+ )
505
+
506
+ EncodedRegistry.set(
507
+ Jira4R::V2::ArrayOf_tns1_RemotePriority,
508
+ ::SOAP::SOAPArray,
509
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
510
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePriority") }
511
+ )
512
+
513
+ EncodedRegistry.set(
514
+ Jira4R::V2::ArrayOf_tns1_RemoteResolution,
515
+ ::SOAP::SOAPArray,
516
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
517
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteResolution") }
518
+ )
519
+
520
+ EncodedRegistry.set(
521
+ Jira4R::V2::ArrayOf_tns1_RemoteStatus,
522
+ ::SOAP::SOAPArray,
523
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
524
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteStatus") }
525
+ )
526
+
527
+ EncodedRegistry.set(
528
+ Jira4R::V2::ArrayOf_tns1_RemoteProjectRole,
529
+ ::SOAP::SOAPArray,
530
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
531
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRole") }
532
+ )
533
+
534
+ EncodedRegistry.set(
535
+ Jira4R::V2::ArrayOf_tns1_RemoteRoleActor,
536
+ ::SOAP::SOAPArray,
537
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
538
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActor") }
539
+ )
540
+
541
+ EncodedRegistry.set(
542
+ Jira4R::V2::ArrayOf_tns1_RemoteScheme,
543
+ ::SOAP::SOAPArray,
544
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
545
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme") }
546
+ )
547
+
548
+ EncodedRegistry.set(
549
+ Jira4R::V2::ArrayOf_tns1_RemoteField,
550
+ ::SOAP::SOAPArray,
551
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
552
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteField") }
553
+ )
554
+
555
+ EncodedRegistry.set(
556
+ Jira4R::V2::ArrayOf_tns1_RemoteComment,
557
+ ::SOAP::SOAPArray,
558
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
559
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComment") }
560
+ )
561
+
562
+ EncodedRegistry.set(
563
+ Jira4R::V2::ArrayOf_tns1_RemoteFilter,
564
+ ::SOAP::SOAPArray,
565
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
566
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFilter") }
567
+ )
568
+
569
+ EncodedRegistry.set(
570
+ Jira4R::V2::ArrayOf_tns1_RemoteSecurityLevel,
571
+ ::SOAP::SOAPArray,
572
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
573
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteSecurityLevel") }
574
+ )
575
+
576
+ EncodedRegistry.set(
577
+ Jira4R::V2::ArrayOf_tns1_RemoteAvatar,
578
+ ::SOAP::SOAPArray,
579
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
580
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteAvatar") }
581
+ )
582
+
583
+ EncodedRegistry.set(
584
+ Jira4R::V2::ArrayOf_tns1_RemotePermissionScheme,
585
+ ::SOAP::SOAPArray,
586
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
587
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionScheme") }
588
+ )
589
+
590
+ EncodedRegistry.set(
591
+ Jira4R::V2::ArrayOf_tns1_RemotePermission,
592
+ ::SOAP::SOAPArray,
593
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
594
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermission") }
595
+ )
596
+
597
+ EncodedRegistry.set(
598
+ Jira4R::V2::ArrayOf_xsd_base64Binary,
599
+ ::SOAP::SOAPArray,
600
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
601
+ { :type => XSD::QName.new("http://www.w3.org/2001/XMLSchema", "byte[]") }
602
+ )
603
+
604
+ EncodedRegistry.set(
605
+ Jira4R::V2::ArrayOf_tns1_RemoteAttachment,
606
+ ::SOAP::SOAPArray,
607
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
608
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteAttachment") }
609
+ )
610
+
611
+ EncodedRegistry.set(
612
+ Jira4R::V2::ArrayOf_tns1_RemoteWorklog,
613
+ ::SOAP::SOAPArray,
614
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
615
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteWorklog") }
616
+ )
617
+
618
+ EncodedRegistry.set(
619
+ Jira4R::V2::ArrayOf_tns1_RemoteIssue,
620
+ ::SOAP::SOAPArray,
621
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
622
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssue") }
623
+ )
624
+
625
+ EncodedRegistry.set(
626
+ Jira4R::V2::ArrayOf_tns1_RemoteProject,
627
+ ::SOAP::SOAPArray,
628
+ ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
629
+ { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProject") }
630
+ )
631
+
632
+ LiteralRegistry.register(
633
+ :class => Jira4R::V2::RemoteComment,
634
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComment"),
635
+ :schema_element => [
636
+ ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
637
+ ["body", ["SOAP::SOAPString", XSD::QName.new(nil, "body")]],
638
+ ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
639
+ ["groupLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "groupLevel")]],
640
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
641
+ ["roleLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "roleLevel")]],
642
+ ["updateAuthor", ["SOAP::SOAPString", XSD::QName.new(nil, "updateAuthor")]],
643
+ ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]]
644
+ ]
645
+ )
646
+
647
+ LiteralRegistry.register(
648
+ :class => Jira4R::V2::RemoteTimeInfo,
649
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteTimeInfo"),
650
+ :schema_element => [
651
+ ["serverTime", ["SOAP::SOAPString", XSD::QName.new(nil, "serverTime")]],
652
+ ["timeZoneId", ["SOAP::SOAPString", XSD::QName.new(nil, "timeZoneId")]]
653
+ ]
654
+ )
655
+
656
+ LiteralRegistry.register(
657
+ :class => Jira4R::V2::RemoteServerInfo,
658
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteServerInfo"),
659
+ :schema_element => [
660
+ ["baseUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "baseUrl")]],
661
+ ["buildDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "buildDate")]],
662
+ ["buildNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "buildNumber")]],
663
+ ["edition", ["SOAP::SOAPString", XSD::QName.new(nil, "edition")]],
664
+ ["serverTime", ["Jira4R::V2::RemoteTimeInfo", XSD::QName.new(nil, "serverTime")]],
665
+ ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]]
666
+ ]
667
+ )
668
+
669
+ LiteralRegistry.register(
670
+ :class => Jira4R::V2::RemoteEntity,
671
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
672
+ :schema_element => []
673
+ )
674
+
675
+ LiteralRegistry.register(
676
+ :class => Jira4R::V2::RemoteUser,
677
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteUser"),
678
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
679
+ :schema_element => [
680
+ ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]],
681
+ ["fullname", ["SOAP::SOAPString", XSD::QName.new(nil, "fullname")]],
682
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
683
+ ]
684
+ )
685
+
686
+ LiteralRegistry.register(
687
+ :class => Jira4R::V2::RemoteGroup,
688
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteGroup"),
689
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
690
+ :schema_element => [
691
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
692
+ ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
693
+ ]
694
+ )
695
+
696
+ LiteralRegistry.register(
697
+ :class => Jira4R::V2::RemoteVersion,
698
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteVersion"),
699
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
700
+ :schema_element => [
701
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
702
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
703
+ ["archived", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "archived")]],
704
+ ["releaseDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "releaseDate")]],
705
+ ["released", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "released")]],
706
+ ["sequence", ["SOAP::SOAPLong", XSD::QName.new(nil, "sequence")]]
707
+ ]
708
+ )
709
+
710
+ LiteralRegistry.register(
711
+ :class => Jira4R::V2::RemoteComponent,
712
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComponent"),
713
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
714
+ :schema_element => [
715
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
716
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
717
+ ]
718
+ )
719
+
720
+ LiteralRegistry.register(
721
+ :class => Jira4R::V2::RemoteCustomFieldValue,
722
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteCustomFieldValue"),
723
+ :schema_element => [
724
+ ["customfieldId", ["SOAP::SOAPString", XSD::QName.new(nil, "customfieldId")]],
725
+ ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
726
+ ["values", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "values")]]
727
+ ]
728
+ )
729
+
730
+ LiteralRegistry.register(
731
+ :class => Jira4R::V2::RemoteIssue,
732
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssue"),
733
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteEntity"),
734
+ :schema_element => [
735
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
736
+ ["affectsVersions", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", XSD::QName.new(nil, "affectsVersions")]],
737
+ ["assignee", ["SOAP::SOAPString", XSD::QName.new(nil, "assignee")]],
738
+ ["attachmentNames", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "attachmentNames")]],
739
+ ["components", ["Jira4R::V2::ArrayOf_tns1_RemoteComponent", XSD::QName.new(nil, "components")]],
740
+ ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
741
+ ["customFieldValues", ["Jira4R::V2::ArrayOf_tns1_RemoteCustomFieldValue", XSD::QName.new(nil, "customFieldValues")]],
742
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
743
+ ["duedate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "duedate")]],
744
+ ["environment", ["SOAP::SOAPString", XSD::QName.new(nil, "environment")]],
745
+ ["fixVersions", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", XSD::QName.new(nil, "fixVersions")]],
746
+ ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
747
+ ["priority", ["SOAP::SOAPString", XSD::QName.new(nil, "priority")]],
748
+ ["project", ["SOAP::SOAPString", XSD::QName.new(nil, "project")]],
749
+ ["reporter", ["SOAP::SOAPString", XSD::QName.new(nil, "reporter")]],
750
+ ["resolution", ["SOAP::SOAPString", XSD::QName.new(nil, "resolution")]],
751
+ ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]],
752
+ ["summary", ["SOAP::SOAPString", XSD::QName.new(nil, "summary")]],
753
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
754
+ ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]],
755
+ ["votes", ["SOAP::SOAPLong", XSD::QName.new(nil, "votes")]]
756
+ ]
757
+ )
758
+
759
+ LiteralRegistry.register(
760
+ :class => Jira4R::V2::RemoteFieldValue,
761
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFieldValue"),
762
+ :schema_element => [
763
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
764
+ ["values", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "values")]]
765
+ ]
766
+ )
767
+
768
+ LiteralRegistry.register(
769
+ :class => Jira4R::V2::RemoteNamedObject,
770
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteNamedObject"),
771
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
772
+ :schema_element => [
773
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
774
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
775
+ ]
776
+ )
777
+
778
+ LiteralRegistry.register(
779
+ :class => Jira4R::V2::RemoteIssueType,
780
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssueType"),
781
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
782
+ :schema_element => [
783
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
784
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
785
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
786
+ ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]],
787
+ ["subTask", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "subTask")]]
788
+ ]
789
+ )
790
+
791
+ LiteralRegistry.register(
792
+ :class => Jira4R::V2::RemoteConfiguration,
793
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteConfiguration"),
794
+ :schema_element => [
795
+ ["allowAttachments", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowAttachments")]],
796
+ ["allowExternalUserManagment", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowExternalUserManagment")]],
797
+ ["allowIssueLinking", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowIssueLinking")]],
798
+ ["allowSubTasks", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowSubTasks")]],
799
+ ["allowTimeTracking", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowTimeTracking")]],
800
+ ["allowUnassignedIssues", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowUnassignedIssues")]],
801
+ ["allowVoting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowVoting")]],
802
+ ["allowWatching", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowWatching")]],
803
+ ["timeTrackingDaysPerWeek", ["SOAP::SOAPInt", XSD::QName.new(nil, "timeTrackingDaysPerWeek")]],
804
+ ["timeTrackingHoursPerDay", ["SOAP::SOAPInt", XSD::QName.new(nil, "timeTrackingHoursPerDay")]]
805
+ ]
806
+ )
807
+
808
+ LiteralRegistry.register(
809
+ :class => Jira4R::V2::RemoteScheme,
810
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme"),
811
+ :schema_element => [
812
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
813
+ ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
814
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
815
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]
816
+ ]
817
+ )
818
+
819
+ LiteralRegistry.register(
820
+ :class => Jira4R::V2::RemotePermission,
821
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermission"),
822
+ :schema_element => [
823
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
824
+ ["permission", ["SOAP::SOAPLong", XSD::QName.new(nil, "permission")]]
825
+ ]
826
+ )
827
+
828
+ LiteralRegistry.register(
829
+ :class => Jira4R::V2::RemotePermissionMapping,
830
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionMapping"),
831
+ :schema_element => [
832
+ ["permission", ["Jira4R::V2::RemotePermission", XSD::QName.new(nil, "permission")]],
833
+ ["remoteEntities", ["Jira4R::V2::ArrayOf_tns1_RemoteEntity", XSD::QName.new(nil, "remoteEntities")]]
834
+ ]
835
+ )
836
+
837
+ LiteralRegistry.register(
838
+ :class => Jira4R::V2::RemotePermissionScheme,
839
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionScheme"),
840
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme"),
841
+ :schema_element => [
842
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
843
+ ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
844
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
845
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
846
+ ["permissionMappings", ["Jira4R::V2::ArrayOf_tns1_RemotePermissionMapping", XSD::QName.new(nil, "permissionMappings")]]
847
+ ]
848
+ )
849
+
850
+ LiteralRegistry.register(
851
+ :class => Jira4R::V2::RemoteProject,
852
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProject"),
853
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
854
+ :schema_element => [
855
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
856
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
857
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
858
+ ["issueSecurityScheme", ["Jira4R::V2::RemoteScheme", XSD::QName.new(nil, "issueSecurityScheme")]],
859
+ ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
860
+ ["lead", ["SOAP::SOAPString", XSD::QName.new(nil, "lead")]],
861
+ ["notificationScheme", ["Jira4R::V2::RemoteScheme", XSD::QName.new(nil, "notificationScheme")]],
862
+ ["permissionScheme", ["Jira4R::V2::RemotePermissionScheme", XSD::QName.new(nil, "permissionScheme")]],
863
+ ["projectUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "projectUrl")]],
864
+ ["url", ["SOAP::SOAPString", XSD::QName.new(nil, "url")]]
865
+ ]
866
+ )
867
+
868
+ LiteralRegistry.register(
869
+ :class => Jira4R::V2::RemotePriority,
870
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePriority"),
871
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
872
+ :schema_element => [
873
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
874
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
875
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
876
+ ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]],
877
+ ["color", ["SOAP::SOAPString", XSD::QName.new(nil, "color")]]
878
+ ]
879
+ )
880
+
881
+ LiteralRegistry.register(
882
+ :class => Jira4R::V2::RemoteResolution,
883
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteResolution"),
884
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
885
+ :schema_element => [
886
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
887
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
888
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
889
+ ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]]
890
+ ]
891
+ )
892
+
893
+ LiteralRegistry.register(
894
+ :class => Jira4R::V2::RemoteStatus,
895
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteStatus"),
896
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
897
+ :schema_element => [
898
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
899
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
900
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
901
+ ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]]
902
+ ]
903
+ )
904
+
905
+ LiteralRegistry.register(
906
+ :class => Jira4R::V2::RemoteProjectRole,
907
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRole"),
908
+ :schema_element => [
909
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
910
+ ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
911
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
912
+ ]
913
+ )
914
+
915
+ LiteralRegistry.register(
916
+ :class => Jira4R::V2::RemoteRoleActor,
917
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActor"),
918
+ :schema_element => [
919
+ ["descriptor", ["SOAP::SOAPString", XSD::QName.new(nil, "descriptor")]],
920
+ ["parameter", ["SOAP::SOAPString", XSD::QName.new(nil, "parameter")]],
921
+ ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
922
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
923
+ ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
924
+ ]
925
+ )
926
+
927
+ LiteralRegistry.register(
928
+ :class => Jira4R::V2::RemoteRoleActors,
929
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActors"),
930
+ :schema_element => [
931
+ ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
932
+ ["roleActors", ["Jira4R::V2::ArrayOf_tns1_RemoteRoleActor", XSD::QName.new(nil, "roleActors")]],
933
+ ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
934
+ ]
935
+ )
936
+
937
+ LiteralRegistry.register(
938
+ :class => Jira4R::V2::RemoteProjectRoleActors,
939
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRoleActors"),
940
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActors"),
941
+ :schema_element => [
942
+ ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
943
+ ["roleActors", ["Jira4R::V2::ArrayOf_tns1_RemoteRoleActor", XSD::QName.new(nil, "roleActors")]],
944
+ ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]],
945
+ ["project", ["Jira4R::V2::RemoteProject", XSD::QName.new(nil, "project")]]
946
+ ]
947
+ )
948
+
949
+ LiteralRegistry.register(
950
+ :class => Jira4R::V2::RemoteField,
951
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteField"),
952
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
953
+ :schema_element => [
954
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
955
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
956
+ ]
957
+ )
958
+
959
+ LiteralRegistry.register(
960
+ :class => Jira4R::V2::RemoteFilter,
961
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFilter"),
962
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
963
+ :schema_element => [
964
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
965
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
966
+ ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
967
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
968
+ ["project", ["SOAP::SOAPString", XSD::QName.new(nil, "project")]],
969
+ ["xml", ["SOAP::SOAPString", XSD::QName.new(nil, "xml")]]
970
+ ]
971
+ )
972
+
973
+ LiteralRegistry.register(
974
+ :class => Jira4R::V2::RemoteSecurityLevel,
975
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteSecurityLevel"),
976
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
977
+ :schema_element => [
978
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
979
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
980
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]]
981
+ ]
982
+ )
983
+
984
+ LiteralRegistry.register(
985
+ :class => Jira4R::V2::RemoteAvatar,
986
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteAvatar"),
987
+ :schema_element => [
988
+ ["base64Data", ["SOAP::SOAPString", XSD::QName.new(nil, "base64Data")]],
989
+ ["contentType", ["SOAP::SOAPString", XSD::QName.new(nil, "contentType")]],
990
+ ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
991
+ ["owner", ["SOAP::SOAPString", XSD::QName.new(nil, "owner")]],
992
+ ["system", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "system")]],
993
+ ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]
994
+ ]
995
+ )
996
+
997
+ LiteralRegistry.register(
998
+ :class => Jira4R::V2::RemoteAttachment,
999
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteAttachment"),
1000
+ :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteEntity"),
1001
+ :schema_element => [
1002
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
1003
+ ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
1004
+ ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
1005
+ ["filename", ["SOAP::SOAPString", XSD::QName.new(nil, "filename")]],
1006
+ ["filesize", ["SOAP::SOAPLong", XSD::QName.new(nil, "filesize")]],
1007
+ ["mimetype", ["SOAP::SOAPString", XSD::QName.new(nil, "mimetype")]]
1008
+ ]
1009
+ )
1010
+
1011
+ LiteralRegistry.register(
1012
+ :class => Jira4R::V2::RemoteWorklog,
1013
+ :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteWorklog"),
1014
+ :schema_element => [
1015
+ ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
1016
+ ["comment", ["SOAP::SOAPString", XSD::QName.new(nil, "comment")]],
1017
+ ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
1018
+ ["groupLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "groupLevel")]],
1019
+ ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
1020
+ ["roleLevelId", ["SOAP::SOAPString", XSD::QName.new(nil, "roleLevelId")]],
1021
+ ["startDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "startDate")]],
1022
+ ["timeSpent", ["SOAP::SOAPString", XSD::QName.new(nil, "timeSpent")]],
1023
+ ["timeSpentInSeconds", ["SOAP::SOAPLong", XSD::QName.new(nil, "timeSpentInSeconds")]],
1024
+ ["updateAuthor", ["SOAP::SOAPString", XSD::QName.new(nil, "updateAuthor")]],
1025
+ ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]]
1026
+ ]
1027
+ )
1028
+
1029
+ LiteralRegistry.register(
1030
+ :class => Jira4R::V2::RemoteException,
1031
+ :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
1032
+ :schema_element => []
1033
+ )
1034
+
1035
+ LiteralRegistry.register(
1036
+ :class => Jira4R::V2::RemotePermissionException,
1037
+ :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemotePermissionException"),
1038
+ :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
1039
+ :schema_element => []
1040
+ )
1041
+
1042
+ LiteralRegistry.register(
1043
+ :class => Jira4R::V2::RemoteValidationException,
1044
+ :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteValidationException"),
1045
+ :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
1046
+ :schema_element => []
1047
+ )
1048
+
1049
+ LiteralRegistry.register(
1050
+ :class => Jira4R::V2::RemoteAuthenticationException,
1051
+ :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteAuthenticationException"),
1052
+ :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
1053
+ :schema_element => []
1054
+ )
1055
+
1056
+ end
1057
+
1058
+ end; end