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