glexchange 4.18.0 → 4.18.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e91e973b586cb51344cc8a00ec552c67799c6a34
4
- data.tar.gz: 27721e54b29f97f245e8fba1c0251a2ea494786c
3
+ metadata.gz: a403a30d88812d456f7bc93ca205df9a6eb36713
4
+ data.tar.gz: bb7b469d5b6766a767154c299bdd506db4a24132
5
5
  SHA512:
6
- metadata.gz: 2b9f964d3cef0824af88727f0d9e00db8d82c84e8676af8226f7d359c8a49a126fe6b77064b6ce2930c33dbd7ec67df93bdf232f5632ebd70767270462a47108
7
- data.tar.gz: 4a334303c1d6800652c59e235065364e2f5926a2e29f99ecabcc3d7b4cdde5d3025ae3d42e77f1cfd06e84d774a72bea73833b462387f32c43d204bc85d1e25f
6
+ metadata.gz: b9d0e8f7d24de6f80ebbbd52ea0083d2478d433f1132dfad449bb5bdde77ce2b2eb87b9f92de5695a80776ad7c1a12119114a2cc6616d841698f156cd3650363
7
+ data.tar.gz: 0feb41fd559e0c47798f73b9849bf9b5bef65ecbfb6d9fed48f6036418fd35dd6ba54e6c3f92e0174c8f5e93881a2e1f907242b40cea285e1ffe1e7c2b79769d
@@ -92,6 +92,20 @@ class GLExchange
92
92
  return result
93
93
 
94
94
  end
95
+
96
+ def getCancelledTargetsBySubmissions(submissionTickets, maxResults)
97
+ getCancelledTargetsBySubmissionRequest = Glexchange::Pdws::GetCanceledTargetsBySubmissions.new
98
+ getCancelledTargetsBySubmissionRequest.maxResults = maxResults
99
+ getCancelledTargetsBySubmissionRequest.submissionTickets = submissionTickets
100
+
101
+ cancelledTargets = @targetService.getCanceledTargetsBySubmissions ( getCancelledTargetsBySubmissionRequest )
102
+ result = Array.new
103
+ for externalTarget in cancelledTargets
104
+ result << Glexchange::Model::PDTarget.new(externalTarget)
105
+ end
106
+ return result
107
+
108
+ end
95
109
 
96
110
  def getCompletedTargets (maxResults)
97
111
  projects = getProjects
@@ -211,6 +225,28 @@ class GLExchange
211
225
  raise "Invalid submission ticket"
212
226
  end
213
227
  end
228
+
229
+ def getSubmissionStatus (submissionTicket)
230
+ findSubmissionByTicketRequest = Glexchange::Pdws::FindByTicket.new (submissionTicket)
231
+
232
+ response = @submissionService.findByTicket ( findSubmissionByTicketRequest )
233
+ if response != nil
234
+ return response.m_return.status
235
+ else
236
+ raise "Invalid submission ticket"
237
+ end
238
+ end
239
+
240
+ def getSubmissionId (submissionTicket)
241
+ findSubmissionByTicketRequest = Glexchange::Pdws::FindByTicket.new (submissionTicket)
242
+
243
+ response = @submissionService.findByTicket ( findSubmissionByTicketRequest )
244
+ if response != nil
245
+ return response.m_return.submissionId
246
+ else
247
+ raise "Invalid submission ticket"
248
+ end
249
+ end
214
250
 
215
251
  def getSubmissionTicket
216
252
  if @submission != nil && @submission.ticket != nil
@@ -528,7 +564,7 @@ private
528
564
  begin
529
565
  @projectService.getUserProjects(Glexchange::Pdws::GetUserProjects.new(true))
530
566
  rescue Exception
531
- raise "Invalid config. " + $!.to_s
567
+ throw "Invalid config. " + $!.to_s
532
568
  end
533
569
 
534
570
  end
@@ -1,1911 +1,1911 @@
1
- require 'glexchange/pdws/DocumentService_4180.rb'
2
- require 'soap/mapping'
3
-
4
- module Glexchange; module Pdws
5
-
6
- module DocumentMappingRegistry
7
- DocumentEncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
8
- DocumentLiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
9
- NsImplServicesServiceWsProjectdirectorGs4trOrg = "http://impl.services.service.ws.projectdirector.gs4tr.org"
10
- NsXmlmime = "http://www.w3.org/2005/05/xmlmime"
11
- NsXsd = "http://dto.model.projectdirector.gs4tr.org/xsd"
12
-
13
- DocumentEncodedRegistry.register(
14
- :class => Glexchange::Pdws::Notification,
15
- :schema_type => XSD::QName.new(NsXsd, "Notification"),
16
- :schema_element => [
17
- ["errorMessage", "SOAP::SOAPString"],
18
- ["notificationDate", "Glexchange::Pdws::Date"],
19
- ["notificationPriority", "Glexchange::Pdws::NotificationPriority"],
20
- ["notificationText", "SOAP::SOAPString"]
21
- ]
22
- )
23
-
24
- DocumentEncodedRegistry.register(
25
- :class => Glexchange::Pdws::NotificationPriority,
26
- :schema_type => XSD::QName.new(NsXsd, "NotificationPriority"),
27
- :schema_element => [
28
- ["notificationPriorityName", "SOAP::SOAPString"]
29
- ]
30
- )
31
-
32
- DocumentEncodedRegistry.register(
33
- :class => Glexchange::Pdws::Announcement,
34
- :schema_type => XSD::QName.new(NsXsd, "Announcement"),
35
- :schema_element => [
36
- ["announcementText", "SOAP::SOAPString"],
37
- ["date", "Glexchange::Pdws::Date"]
38
- ]
39
- )
40
-
41
- DocumentEncodedRegistry.register(
42
- :class => Glexchange::Pdws::Batch,
43
- :schema_type => XSD::QName.new(NsXsd, "Batch"),
44
- :schema_element => [
45
- ["name", "SOAP::SOAPString"],
46
- ["targetLanguages", "SOAP::SOAPString[]", [0, nil]],
47
- ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
48
- ]
49
- )
50
-
51
- DocumentEncodedRegistry.register(
52
- :class => Glexchange::Pdws::ContentMonitorPluginInfo,
53
- :schema_type => XSD::QName.new(NsXsd, "ContentMonitorPluginInfo"),
54
- :schema_element => [
55
- ["pluginId", "SOAP::SOAPString"],
56
- ["pluginName", "SOAP::SOAPString"]
57
- ]
58
- )
59
-
60
- DocumentEncodedRegistry.register(
61
- :class => Glexchange::Pdws::Date,
62
- :schema_type => XSD::QName.new(NsXsd, "Date"),
63
- :schema_element => [
64
- ["critical", "SOAP::SOAPBoolean"],
65
- ["date", "SOAP::SOAPLong"]
66
- ]
67
- )
68
-
69
- DocumentEncodedRegistry.register(
70
- :class => Glexchange::Pdws::Document,
71
- :schema_type => XSD::QName.new(NsXsd, "Document"),
72
- :schema_element => [
73
- ["documentGroup", "Glexchange::Pdws::DocumentGroup"],
74
- ["documentInfo", "Glexchange::Pdws::DocumentInfo"],
75
- ["id", "SOAP::SOAPString"],
76
- ["sourceLanguage", "Glexchange::Pdws::Language"],
77
- ["sourceWordCount", "SOAP::SOAPInt"],
78
- ["ticket", "SOAP::SOAPString"]
79
- ]
80
- )
81
-
82
- DocumentEncodedRegistry.register(
83
- :class => Glexchange::Pdws::DocumentGroup,
84
- :schema_type => XSD::QName.new(NsXsd, "DocumentGroup"),
85
- :schema_element => [
86
- ["classifier", "SOAP::SOAPString"],
87
- ["documents", "Glexchange::Pdws::Document[]", [0, nil]],
88
- ["mimeType", "SOAP::SOAPString"],
89
- ["submission", "Glexchange::Pdws::Submission"]
90
- ]
91
- )
92
-
93
- DocumentEncodedRegistry.register(
94
- :class => Glexchange::Pdws::DocumentInfo,
95
- :schema_type => XSD::QName.new(NsXsd, "DocumentInfo"),
96
- :schema_element => [
97
- ["childDocumentInfos", "Glexchange::Pdws::DocumentInfo[]", [0, nil]],
98
- ["clientIdentifier", "SOAP::SOAPString"],
99
- ["dateRequested", "Glexchange::Pdws::Date"],
100
- ["instructions", "SOAP::SOAPString"],
101
- ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
102
- ["name", "SOAP::SOAPString"],
103
- ["projectTicket", "SOAP::SOAPString"],
104
- ["sourceLocale", "SOAP::SOAPString"],
105
- ["submissionTicket", "SOAP::SOAPString"],
106
- ["targetInfos", "Glexchange::Pdws::TargetInfo[]", [0, nil]],
107
- ["wordCount", "SOAP::SOAPInt"]
108
- ]
109
- )
110
-
111
- DocumentEncodedRegistry.register(
112
- :class => Glexchange::Pdws::DocumentPagedList,
113
- :schema_type => XSD::QName.new(NsXsd, "DocumentPagedList"),
114
- :schema_element => [
115
- ["elements", "Glexchange::Pdws::Document[]", [0, nil]],
116
- ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
117
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
118
- ["totalCount", "SOAP::SOAPLong"]
119
- ]
120
- )
121
-
122
- DocumentEncodedRegistry.register(
123
- :class => Glexchange::Pdws::DocumentSearchRequest,
124
- :schema_type => XSD::QName.new(NsXsd, "DocumentSearchRequest"),
125
- :schema_element => [
126
- ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
127
- ["sourceLocaleId", "SOAP::SOAPString"],
128
- ["submissionTicket", "SOAP::SOAPString"]
129
- ]
130
- )
131
-
132
- DocumentEncodedRegistry.register(
133
- :class => Glexchange::Pdws::DocumentTicket,
134
- :schema_type => XSD::QName.new(NsXsd, "DocumentTicket"),
135
- :schema_element => [
136
- ["submissionTicket", "SOAP::SOAPString"],
137
- ["ticketId", "SOAP::SOAPString"]
138
- ]
139
- )
140
-
141
- DocumentEncodedRegistry.register(
142
- :class => Glexchange::Pdws::EntityTypeEnum,
143
- :schema_type => XSD::QName.new(NsXsd, "EntityTypeEnum"),
144
- :schema_element => [
145
- ["name", "SOAP::SOAPString"],
146
- ["value", "SOAP::SOAPInt"]
147
- ]
148
- )
149
-
150
- DocumentEncodedRegistry.register(
151
- :class => Glexchange::Pdws::FileFormatProfile,
152
- :schema_type => XSD::QName.new(NsXsd, "FileFormatProfile"),
153
- :schema_element => [
154
- ["configurable", "SOAP::SOAPBoolean"],
155
- ["isDefault", "SOAP::SOAPBoolean"],
156
- ["mimeType", "SOAP::SOAPString"],
157
- ["pluginId", "SOAP::SOAPString"],
158
- ["pluginName", "SOAP::SOAPString"],
159
- ["profileName", "SOAP::SOAPString"],
160
- ["targetWorkflowDefinition", "Glexchange::Pdws::WorkflowDefinition"],
161
- ["ticket", "SOAP::SOAPString"]
162
- ]
163
- )
164
-
165
- DocumentEncodedRegistry.register(
166
- :class => Glexchange::Pdws::FileFormatProgressData,
167
- :schema_type => XSD::QName.new(NsXsd, "FileFormatProgressData"),
168
- :schema_element => [
169
- ["dateCompleted", "Glexchange::Pdws::Date"],
170
- ["fileCount", "SOAP::SOAPLong"],
171
- ["fileFormatName", "SOAP::SOAPString"],
172
- ["fileProgressData", "Glexchange::Pdws::FileProgressData"],
173
- ["jobTicket", "SOAP::SOAPString"],
174
- ["workflowDueDate", "Glexchange::Pdws::Date"],
175
- ["workflowStatus", "SOAP::SOAPString"]
176
- ]
177
- )
178
-
179
- DocumentEncodedRegistry.register(
180
- :class => Glexchange::Pdws::FileProgressData,
181
- :schema_type => XSD::QName.new(NsXsd, "FileProgressData"),
182
- :schema_element => [
183
- ["numberOfAvailableFiles", "SOAP::SOAPInt"],
184
- ["numberOfCanceledFiles", "SOAP::SOAPInt"],
185
- ["numberOfCompletedFiles", "SOAP::SOAPInt"],
186
- ["numberOfDeliveredFiles", "SOAP::SOAPInt"],
187
- ["numberOfFailedFiles", "SOAP::SOAPInt"],
188
- ["numberOfInProcessFiles", "SOAP::SOAPInt"],
189
- ["overallProgressPercent", "SOAP::SOAPInt"]
190
- ]
191
- )
192
-
193
- DocumentEncodedRegistry.register(
194
- :class => Glexchange::Pdws::FuzzyTmStatistics,
195
- :schema_type => XSD::QName.new(NsXsd, "FuzzyTmStatistics"),
196
- :schema_element => [
197
- ["fuzzyName", "SOAP::SOAPString"],
198
- ["wordCount", "SOAP::SOAPInt"]
199
- ]
200
- )
201
-
202
- DocumentEncodedRegistry.register(
203
- :class => Glexchange::Pdws::ItemFolderEnum,
204
- :schema_type => XSD::QName.new(NsXsd, "ItemFolderEnum"),
205
- :schema_element => [
206
- ["value", "SOAP::SOAPInt"]
207
- ]
208
- )
209
-
210
- DocumentEncodedRegistry.register(
211
- :class => Glexchange::Pdws::ItemStatusEnum,
212
- :schema_type => XSD::QName.new(NsXsd, "ItemStatusEnum"),
213
- :schema_element => [
214
- ["name", "SOAP::SOAPString"],
215
- ["value", "SOAP::SOAPInt"]
216
- ]
217
- )
218
-
219
- DocumentEncodedRegistry.register(
220
- :class => Glexchange::Pdws::Metadata,
221
- :schema_type => XSD::QName.new(NsXsd, "Metadata"),
222
- :schema_element => [
223
- ["key", "SOAP::SOAPString"],
224
- ["value", "SOAP::SOAPString"]
225
- ]
226
- )
227
-
228
- DocumentEncodedRegistry.register(
229
- :class => Glexchange::Pdws::Language,
230
- :schema_type => XSD::QName.new(NsXsd, "Language"),
231
- :schema_element => [
232
- ["locale", "SOAP::SOAPString"],
233
- ["value", "SOAP::SOAPString"]
234
- ]
235
- )
236
-
237
- DocumentEncodedRegistry.register(
238
- :class => Glexchange::Pdws::LanguageDirection,
239
- :schema_type => XSD::QName.new(NsXsd, "LanguageDirection"),
240
- :schema_element => [
241
- ["sourceLanguage", "Glexchange::Pdws::Language"],
242
- ["targetLanguage", "Glexchange::Pdws::Language"]
243
- ]
244
- )
245
-
246
- DocumentEncodedRegistry.register(
247
- :class => Glexchange::Pdws::LanguageDirectionModel,
248
- :schema_type => XSD::QName.new(NsXsd, "LanguageDirectionModel"),
249
- :schema_element => [
250
- ["dateCompleted", "Glexchange::Pdws::Date"],
251
- ["fileCount", "SOAP::SOAPLong"],
252
- ["fileFormatProgressData", "Glexchange::Pdws::FileFormatProgressData[]", [0, nil]],
253
- ["fileProgress", "Glexchange::Pdws::FileProgressData"],
254
- ["sourceLanguage", "Glexchange::Pdws::Language"],
255
- ["targetLanguage", "Glexchange::Pdws::Language"],
256
- ["workflowDueDate", "Glexchange::Pdws::Date"],
257
- ["workflowStatus", "SOAP::SOAPString"]
258
- ]
259
- )
260
-
261
- DocumentEncodedRegistry.register(
262
- :class => Glexchange::Pdws::LanguagePhaseInfo,
263
- :schema_type => XSD::QName.new(NsXsd, "LanguagePhaseInfo"),
264
- :schema_element => [
265
- ["phaseStartDate", "Glexchange::Pdws::Date"],
266
- ["sourceFileList", "SOAP::SOAPString[]", [0, nil]],
267
- ["tmStatistics", "Glexchange::Pdws::TmStatistics"]
268
- ]
269
- )
270
-
271
- DocumentEncodedRegistry.register(
272
- :class => Glexchange::Pdws::Organization,
273
- :schema_type => XSD::QName.new(NsXsd, "Organization"),
274
- :schema_element => [
275
- ["availableTasks", "SOAP::SOAPInteger"],
276
- ["parentOrganization", "Glexchange::Pdws::Organization"],
277
- ["organizationInfo", "Glexchange::Pdws::OrganizationInfo"],
278
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
279
- ["ticket", "SOAP::SOAPString"]
280
- ]
281
- )
282
-
283
- DocumentEncodedRegistry.register(
284
- :class => Glexchange::Pdws::OrganizationInfo,
285
- :schema_type => XSD::QName.new(NsXsd, "OrganizationInfo"),
286
- :schema_element => [
287
- ["name", "SOAP::SOAPString"],
288
- ["ticket", "SOAP::SOAPString"],
289
- ["currencyCode", "SOAP::SOAPString"],
290
- ["domain", "SOAP::SOAPString"],
291
- ["theme", "SOAP::SOAPString"],
292
- ["enabled", "SOAP::SOAPBoolean"]
293
- ]
294
- )
295
-
296
- DocumentEncodedRegistry.register(
297
- :class => Glexchange::Pdws::PagedListInfo,
298
- :schema_type => XSD::QName.new(NsXsd, "PagedListInfo"),
299
- :schema_element => [
300
- ["index", "SOAP::SOAPInt"],
301
- ["indexesSize", "SOAP::SOAPInt"],
302
- ["size", "SOAP::SOAPInt"],
303
- ["sortDirection", "SOAP::SOAPString"],
304
- ["sortProperty", "SOAP::SOAPString"]
305
- ]
306
- )
307
-
308
- DocumentEncodedRegistry.register(
309
- :class => Glexchange::Pdws::Phase,
310
- :schema_type => XSD::QName.new(NsXsd, "Phase"),
311
- :schema_element => [
312
- ["dateEnded", "Glexchange::Pdws::Date"],
313
- ["dueDate", "Glexchange::Pdws::Date"],
314
- ["name", "SOAP::SOAPString"],
315
- ["status", "Glexchange::Pdws::ItemStatusEnum"]
316
- ]
317
- )
318
-
319
- DocumentEncodedRegistry.register(
320
- :class => Glexchange::Pdws::PreviewResult,
321
- :schema_type => XSD::QName.new(NsXsd, "PreviewResult"),
322
- :schema_element => [
323
- ["message", "SOAP::SOAPString"],
324
- ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
325
- ]
326
- )
327
-
328
- DocumentEncodedRegistry.register(
329
- :class => Glexchange::Pdws::Priority,
330
- :schema_type => XSD::QName.new(NsXsd, "Priority"),
331
- :schema_element => [
332
- ["name", "SOAP::SOAPString"],
333
- ["value", "SOAP::SOAPInt"]
334
- ]
335
- )
336
-
337
- DocumentEncodedRegistry.register(
338
- :class => Glexchange::Pdws::Project,
339
- :schema_type => XSD::QName.new(NsXsd, "Project"),
340
- :schema_element => [
341
- ["announcements", "Glexchange::Pdws::Announcement[]", [0, nil]],
342
- ["contentMonitorPluginInfo", "Glexchange::Pdws::ContentMonitorPluginInfo"],
343
- ["defaultTargetWorkflowDefinition", "Glexchange::Pdws::WorkflowDefinition"],
344
- ["defaultTargetWorkflowDefinitionTicket", "SOAP::SOAPString"],
345
- ["fileFormatProfiles", "Glexchange::Pdws::FileFormatProfile[]", [0, nil]],
346
- ["includeSubmissionNameInLocalizationKit", "SOAP::SOAPBoolean[]", [0, nil]],
347
- ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
348
- ["organizationName", "SOAP::SOAPString"],
349
- ["projectCustomFieldConfiguration", "Glexchange::Pdws::ProjectCustomFieldConfiguration[]", [0, nil]],
350
- ["projectInfo", "Glexchange::Pdws::ProjectInfo"],
351
- ["projectLanguageDirections", "Glexchange::Pdws::ProjectLanguageDirection[]", [0, nil]],
352
- ["ticket", "SOAP::SOAPString"],
353
- ["workflowDefinitions", "Glexchange::Pdws::WorkflowDefinition[]", [0, nil]]
354
- ]
355
- )
356
-
357
- DocumentEncodedRegistry.register(
358
- :class => Glexchange::Pdws::ProjectInfo,
359
- :schema_type => XSD::QName.new(NsXsd, "ProjectInfo"),
360
- :schema_element => [
361
- ["clientIdentifier", "SOAP::SOAPString"],
362
- ["defaultJobWorkflowDefinitionTicket", "SOAP::SOAPString"],
363
- ["defaultSubmissionWorkflowDefinitionTicket", "SOAP::SOAPString"],
364
- ["defaultTargetWorkflowDefinitionTicket", "SOAP::SOAPString"],
365
- ["enabled", "SOAP::SOAPBoolean"],
366
- ["name", "SOAP::SOAPString"],
367
- ["shortCode", "SOAP::SOAPString"]
368
- ]
369
- )
370
-
371
- DocumentEncodedRegistry.register(
372
- :class => Glexchange::Pdws::ProjectLanguage,
373
- :schema_type => XSD::QName.new(NsXsd, "ProjectLanguage"),
374
- :schema_element => [
375
- ["customLocaleCode", "SOAP::SOAPString"],
376
- ["localeCode", "SOAP::SOAPString"]
377
- ]
378
- )
379
-
380
- DocumentEncodedRegistry.register(
381
- :class => Glexchange::Pdws::ProjectLanguageDirection,
382
- :schema_type => XSD::QName.new(NsXsd, "ProjectLanguageDirection"),
383
- :schema_element => [
384
- ["sourceLanguage", "Glexchange::Pdws::Language"],
385
- ["targetLanguage", "Glexchange::Pdws::Language"],
386
- ["default", "SOAP::SOAPBoolean"],
387
- ["frequent", "SOAP::SOAPBoolean"]
388
- ]
389
- )
390
-
391
- DocumentEncodedRegistry.register(
392
- :class => Glexchange::Pdws::ProjectAClient,
393
- :schema_type => XSD::QName.new(NsXsd, "ProjectAClient"),
394
- :schema_element => [
395
- ["enabled", "SOAP::SOAPBoolean"],
396
- ["name", "SOAP::SOAPString"],
397
- ["parentOrganization", "Glexchange::Pdws::Organization"],
398
- ["ticket", "SOAP::SOAPString"]
399
- ]
400
- )
401
-
402
- DocumentEncodedRegistry.register(
403
- :class => Glexchange::Pdws::RepositoryItem,
404
- :schema_type => XSD::QName.new(NsXsd, "RepositoryItem"),
405
- :schema_element => [
406
- ["data", "Glexchange::Pdws::Base64Binary"],
407
- ["resourceInfo", "Glexchange::Pdws::ResourceInfo"]
408
- ]
409
- )
410
-
411
- DocumentEncodedRegistry.register(
412
- :class => Glexchange::Pdws::ResourceInfo,
413
- :schema_type => XSD::QName.new(NsXsd, "ResourceInfo"),
414
- :schema_element => [
415
- ["classifier", "SOAP::SOAPString"],
416
- ["clientIdentifier", "SOAP::SOAPString"],
417
- ["description", "SOAP::SOAPString"],
418
- ["encoding", "SOAP::SOAPString"],
419
- ["md5Checksum", "SOAP::SOAPString"],
420
- ["mimeType", "SOAP::SOAPString"],
421
- ["name", "SOAP::SOAPString"],
422
- ["path", "SOAP::SOAPString"],
423
- ["resourceInfoId", "SOAP::SOAPLong"],
424
- ["size", "SOAP::SOAPLong"],
425
- ["type", "Glexchange::Pdws::ResourceType"]
426
- ]
427
- )
428
-
429
- DocumentEncodedRegistry.register(
430
- :class => Glexchange::Pdws::ResourceType,
431
- :schema_type => XSD::QName.new(NsXsd, "ResourceType"),
432
- :schema_element => [
433
- ["value", "SOAP::SOAPInt"]
434
- ]
435
- )
436
-
437
- DocumentEncodedRegistry.register(
438
- :class => Glexchange::Pdws::Submission,
439
- :schema_type => XSD::QName.new(NsXsd, "Submission"),
440
- :schema_element => [
441
- ["alerts", "Glexchange::Pdws::Notification[]", [0, nil]],
442
- ["availableTasks", "SOAP::SOAPInt"],
443
- ["batches", "Glexchange::Pdws::Batch[]", [0, nil]],
444
- ["dateArchived", "Glexchange::Pdws::Date"],
445
- ["dateCompleted", "Glexchange::Pdws::Date"],
446
- ["dateCreated", "Glexchange::Pdws::Date"],
447
- ["dateEstimated", "Glexchange::Pdws::Date"],
448
- ["documents", "Glexchange::Pdws::Document[]", [0, nil]],
449
- ["dueDate", "Glexchange::Pdws::Date"],
450
- ["id", "SOAP::SOAPString"],
451
- ["owner", "SOAP::SOAPString"],
452
- ["project", "Glexchange::Pdws::Project"],
453
- ["status", "Glexchange::Pdws::ItemStatusEnum"],
454
- ["submissionId", "SOAP::SOAPLong"],
455
- ["submissionInfo", "Glexchange::Pdws::SubmissionInfo"],
456
- ["submitterFullNames", "SOAP::SOAPString[]", [0, nil]],
457
- ["ticket", "SOAP::SOAPString"],
458
- ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
459
- ]
460
- )
461
-
462
- DocumentEncodedRegistry.register(
463
- :class => Glexchange::Pdws::SubmissionInfo,
464
- :schema_type => XSD::QName.new(NsXsd, "SubmissionInfo"),
465
- :schema_element => [
466
- ["additionalCosts", "SOAP::SOAPString"],
467
- ["autoStartChilds", "SOAP::SOAPBoolean"],
468
- ["claimScope", "Glexchange::Pdws::ClaimScopeEnum"],
469
- ["clientIdentifier", "SOAP::SOAPString"],
470
- ["dateRequested", "Glexchange::Pdws::Date"],
471
- ["internalNotes", "SOAP::SOAPString"],
472
- ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
473
- ["name", "SOAP::SOAPString"],
474
- ["officeName", "SOAP::SOAPString"],
475
- ["paClientTicket", "SOAP::SOAPString"],
476
- ["paJobNumber", "SOAP::SOAPString"],
477
- ["priority", "Glexchange::Pdws::Priority"],
478
- ["projectTicket", "SOAP::SOAPString"],
479
- ["revenue", "SOAP::SOAPDouble"],
480
- ["submissionBackground", "SOAP::SOAPString"],
481
- ["submissionCustomFields", "Glexchange::Pdws::SubmissionCustomFields[]", [0, nil]],
482
- ["submitters", "SOAP::SOAPString[]", [0, nil]],
483
- ["workflowDefinitionTicket", "SOAP::SOAPString"]
484
- ]
485
- )
486
-
487
- DocumentEncodedRegistry.register(
488
- :class => Glexchange::Pdws::SubmissionPagedList,
489
- :schema_type => XSD::QName.new(NsXsd, "SubmissionPagedList"),
490
- :schema_element => [
491
- ["elements", "Glexchange::Pdws::Submission[]", [0, nil]],
492
- ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
493
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
494
- ["totalCount", "SOAP::SOAPLong"]
495
- ]
496
- )
497
-
498
- DocumentEncodedRegistry.register(
499
- :class => Glexchange::Pdws::SimpleSubmissionSearchModel,
500
- :schema_type => XSD::QName.new(NsXsd, "SimpleSubmissionSearchModel"),
501
- :schema_element => [
502
- ["alerts", "Glexchange::Pdws::Notification[]", [0, nil]],
503
- ["availableTasks", "SOAP::SOAPLong"],
504
- ["budgetStatus", "SOAP::SOAPInt"],
505
- ["claimScope", "Glexchange::Pdws::ClaimScopeEnum"],
506
- ["customFields", "SOAP::SOAPString[]", [0, nil]],
507
- ["date", "Glexchange::Pdws::Date"],
508
- ["dateArchived", "Glexchange::Pdws::Date"],
509
- ["dateCompleted", "Glexchange::Pdws::Date"],
510
- ["dateStarted", "Glexchange::Pdws::Date"],
511
- ["dueDate", "Glexchange::Pdws::Date"],
512
- ["fileCount", "SOAP::SOAPLong"],
513
- ["fileProgress", "Glexchange::Pdws::FileProgressData"],
514
- ["gate", "SOAP::SOAPByte"],
515
- ["id", "SOAP::SOAPString"],
516
- ["instructions", "SOAP::SOAPString"],
517
- ["officeName", "SOAP::SOAPString"],
518
- ["owner", "Glexchange::Pdws::UserData[]", [0, nil]],
519
- ["paClientName", "SOAP::SOAPString"],
520
- ["parentSubmissionName", "SOAP::SOAPString"],
521
- ["parentTicket", "SOAP::SOAPString"],
522
- ["pmNotes", "SOAP::SOAPString"],
523
- ["priority", "SOAP::SOAPString"],
524
- ["projectName", "SOAP::SOAPString"],
525
- ["projectTicket", "SOAP::SOAPString"],
526
- ["quote", "SOAP::SOAPByte"],
527
- ["reserved", "SOAP::SOAPBoolean"],
528
- ["sourceLanguage", "SOAP::SOAPString"],
529
- ["status", "Glexchange::Pdws::ItemStatusEnum"],
530
- ["submissionBackground", "SOAP::SOAPString"],
531
- ["submissionName", "SOAP::SOAPString"],
532
- ["submitterFullName", "Glexchange::Pdws::UserData[]", [0, nil]],
533
- ["ticket", "SOAP::SOAPString"],
534
- ["wordCount", "SOAP::SOAPLong"],
535
- ["workflowDueDate", "Glexchange::Pdws::Date"],
536
- ["workflowStatus", "SOAP::SOAPString"]
537
- ]
538
- )
539
-
540
- DocumentEncodedRegistry.register(
541
- :class => Glexchange::Pdws::SubmissionSearchModelPagedList,
542
- :schema_type => XSD::QName.new(NsXsd, "SubmissionSearchModelPagedList"),
543
- :schema_element => [
544
- ["elements", "Glexchange::Pdws::SimpleSubmissionSearchModel[]", [0, nil]],
545
- ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
546
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
547
- ["totalCount", "SOAP::SOAPLong"]
548
- ]
549
- )
550
-
551
- DocumentEncodedRegistry.register(
552
- :class => Glexchange::Pdws::SubmissionSearchRequest,
553
- :schema_type => XSD::QName.new(NsXsd, "SubmissionSearchRequest"),
554
- :schema_element => [
555
- ["folder", "Glexchange::Pdws::ItemFolderEnum"],
556
- ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
557
- ["submissionDate", "Glexchange::Pdws::Date"],
558
- ["submissionDueDate", "Glexchange::Pdws::Date"],
559
- ["submissionName", "SOAP::SOAPString"]
560
- ]
561
- )
562
-
563
- DocumentEncodedRegistry.register(
564
- :class => Glexchange::Pdws::Target,
565
- :schema_type => XSD::QName.new(NsXsd, "Target"),
566
- :schema_element => [
567
- ["availableTasks", "SOAP::SOAPLong"],
568
- ["dateCompleted", "Glexchange::Pdws::Date"],
569
- ["dateCreated", "Glexchange::Pdws::Date"],
570
- ["dateEstimated", "Glexchange::Pdws::Date"],
571
- ["document", "Glexchange::Pdws::Document"],
572
- ["downloadThresholdTimeStamp", "Glexchange::Pdws::Date"],
573
- ["dueDate", "Glexchange::Pdws::Date"],
574
- ["fileName", "SOAP::SOAPString"],
575
- ["id", "SOAP::SOAPString"],
576
- ["phases", "Glexchange::Pdws::Phase[]", [0, nil]],
577
- ["refPhase", "Glexchange::Pdws::Phase"],
578
- ["sourceLanguage", "Glexchange::Pdws::Language"],
579
- ["sourceWordCount", "SOAP::SOAPInt"],
580
- ["status", "Glexchange::Pdws::ItemStatusEnum"],
581
- ["targetInfo", "Glexchange::Pdws::TargetInfo"],
582
- ["targetLanguage", "Glexchange::Pdws::Language"],
583
- ["targetWordCount", "SOAP::SOAPInt"],
584
- ["ticket", "SOAP::SOAPString"],
585
- ["tmStatistics", "Glexchange::Pdws::TmStatistics"],
586
- ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
587
- ]
588
- )
589
-
590
- DocumentEncodedRegistry.register(
591
- :class => Glexchange::Pdws::TargetInfo,
592
- :schema_type => XSD::QName.new(NsXsd, "TargetInfo"),
593
- :schema_element => [
594
- ["dateRequested", "Glexchange::Pdws::Date"],
595
- ["encoding", "SOAP::SOAPString"],
596
- ["instructions", "SOAP::SOAPString"],
597
- ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
598
- ["priority", "Glexchange::Pdws::Priority"],
599
- ["requestedDueDate", "SOAP::SOAPLong"],
600
- ["targetLocale", "SOAP::SOAPString"],
601
- ["workflowDefinitionTicket", "SOAP::SOAPString"]
602
- ]
603
- )
604
-
605
- DocumentEncodedRegistry.register(
606
- :class => Glexchange::Pdws::TargetPagedList,
607
- :schema_type => XSD::QName.new(NsXsd, "TargetPagedList"),
608
- :schema_element => [
609
- ["elements", "Glexchange::Pdws::Target[]", [0, nil]],
610
- ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
611
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
612
- ["totalCount", "SOAP::SOAPLong"]
613
- ]
614
- )
615
-
616
- DocumentEncodedRegistry.register(
617
- :class => Glexchange::Pdws::TargetSearchRequest,
618
- :schema_type => XSD::QName.new(NsXsd, "TargetSearchRequest"),
619
- :schema_element => [
620
- ["dateCreated", "Glexchange::Pdws::Date"],
621
- ["folder", "Glexchange::Pdws::ItemFolderEnum"],
622
- ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
623
- ["sourceLocaleId", "SOAP::SOAPString"],
624
- ["submissionTicket", "SOAP::SOAPString"],
625
- ["targetLocaleId", "SOAP::SOAPString"]
626
- ]
627
- )
628
-
629
- DocumentEncodedRegistry.register(
630
- :class => Glexchange::Pdws::Task,
631
- :schema_type => XSD::QName.new(NsXsd, "Task"),
632
- :schema_element => [
633
- ["groupName", "SOAP::SOAPString"],
634
- ["selectStyle", "SOAP::SOAPInt"],
635
- ["taskId", "SOAP::SOAPInt"],
636
- ["taskName", "SOAP::SOAPString"],
637
- ["weight", "SOAP::SOAPInt"]
638
- ]
639
- )
640
-
641
- DocumentEncodedRegistry.register(
642
- :class => Glexchange::Pdws::TmStatistics,
643
- :schema_type => XSD::QName.new(NsXsd, "TmStatistics"),
644
- :schema_element => [
645
- ["fuzzyRepetitionsWordCount1", "Glexchange::Pdws::FuzzyTmStatistics"],
646
- ["fuzzyRepetitionsWordCount10", "Glexchange::Pdws::FuzzyTmStatistics"],
647
- ["fuzzyRepetitionsWordCount2", "Glexchange::Pdws::FuzzyTmStatistics"],
648
- ["fuzzyRepetitionsWordCount3", "Glexchange::Pdws::FuzzyTmStatistics"],
649
- ["fuzzyRepetitionsWordCount4", "Glexchange::Pdws::FuzzyTmStatistics"],
650
- ["fuzzyRepetitionsWordCount5", "Glexchange::Pdws::FuzzyTmStatistics"],
651
- ["fuzzyRepetitionsWordCount6", "Glexchange::Pdws::FuzzyTmStatistics"],
652
- ["fuzzyRepetitionsWordCount7", "Glexchange::Pdws::FuzzyTmStatistics"],
653
- ["fuzzyRepetitionsWordCount8", "Glexchange::Pdws::FuzzyTmStatistics"],
654
- ["fuzzyRepetitionsWordCount9", "Glexchange::Pdws::FuzzyTmStatistics"],
655
- ["fuzzyWordCount1", "Glexchange::Pdws::FuzzyTmStatistics"],
656
- ["fuzzyWordCount10", "Glexchange::Pdws::FuzzyTmStatistics"],
657
- ["fuzzyWordCount2", "Glexchange::Pdws::FuzzyTmStatistics"],
658
- ["fuzzyWordCount3", "Glexchange::Pdws::FuzzyTmStatistics"],
659
- ["fuzzyWordCount4", "Glexchange::Pdws::FuzzyTmStatistics"],
660
- ["fuzzyWordCount5", "Glexchange::Pdws::FuzzyTmStatistics"],
661
- ["fuzzyWordCount6", "Glexchange::Pdws::FuzzyTmStatistics"],
662
- ["fuzzyWordCount7", "Glexchange::Pdws::FuzzyTmStatistics"],
663
- ["fuzzyWordCount8", "Glexchange::Pdws::FuzzyTmStatistics"],
664
- ["fuzzyWordCount9", "Glexchange::Pdws::FuzzyTmStatistics"],
665
- ["inContextMatchWordCount", "SOAP::SOAPInt"],
666
- ["noMatchWordCount", "SOAP::SOAPInt"],
667
- ["oneHundredMatchWordCount", "SOAP::SOAPInt"],
668
- ["repetitionWordCount", "SOAP::SOAPInt"],
669
- ["totalWordCount", "SOAP::SOAPInt"]
670
- ]
671
- )
672
-
673
- DocumentEncodedRegistry.register(
674
- :class => Glexchange::Pdws::WorkflowDefinition,
675
- :schema_type => XSD::QName.new(NsXsd, "WorkflowDefinition"),
676
- :schema_element => [
677
- ["description", "SOAP::SOAPString"],
678
- ["name", "SOAP::SOAPString"],
679
- ["ticket", "SOAP::SOAPString"],
680
- ["type", "Glexchange::Pdws::EntityTypeEnum"]
681
- ]
682
- )
683
-
684
- DocumentEncodedRegistry.register(
685
- :class => Glexchange::Pdws::UserData,
686
- :schema_type => XSD::QName.new(NsXsd, "UserData"),
687
- :schema_element => [
688
- ["email", "SOAP::SOAPString"],
689
- ["name", "SOAP::SOAPString"]
690
- ]
691
- )
692
-
693
- DocumentEncodedRegistry.register(
694
- :class => Glexchange::Pdws::UserInfo,
695
- :schema_type => XSD::QName.new(NsXsd, "UserInfo"),
696
- :schema_element => [
697
- ["accountLocked", "SOAP::SOAPBoolean"],
698
- ["accountNonExpired", "SOAP::SOAPBoolean"],
699
- ["address", "SOAP::SOAPString"],
700
- ["autoClaimMultipleTasks", "SOAP::SOAPBoolean"],
701
- ["claimMultipleJobTasks", "SOAP::SOAPBoolean"],
702
- ["credentialsNonExpired", "SOAP::SOAPBoolean"],
703
- ["dateLastLogin", "SOAP::SOAPDateTime"],
704
- ["department", "SOAP::SOAPString"],
705
- ["emailAddress", "SOAP::SOAPString"],
706
- ["emailNotification", "SOAP::SOAPBoolean"],
707
- ["enabled", "SOAP::SOAPBoolean"],
708
- ["fax", "SOAP::SOAPString"],
709
- ["firstName", "SOAP::SOAPString"],
710
- ["lastName", "SOAP::SOAPString"],
711
- ["password", "SOAP::SOAPString"],
712
- ["phone1", "SOAP::SOAPString"],
713
- ["phone2", "SOAP::SOAPString"],
714
- ["timeZone", "SOAP::SOAPString"],
715
- ["userName", "SOAP::SOAPString"],
716
- ["userType", "SOAP::SOAPString"]
717
- ]
718
- )
719
-
720
- DocumentEncodedRegistry.register(
721
- :class => Glexchange::Pdws::TiUserInfo,
722
- :schema_type => XSD::QName.new(NsXsd, "TiUserInfo"),
723
- :schema_element => [
724
- ["languageDirections", "Glexchange::Pdws::LanguageDirection[]", [0, nil]],
725
- ["organizationId", "SOAP::SOAPLong"],
726
- ["projectRoles", "SOAP::SOAPString[]", [0, nil]],
727
- ["projectTicket", "SOAP::SOAPString[]", [0, nil]],
728
- ["systemRoles", "SOAP::SOAPString[]", [0, nil]],
729
- ["vendorId", "SOAP::SOAPLong"]
730
- ]
731
- )
732
-
733
- DocumentEncodedRegistry.register(
734
- :class => Glexchange::Pdws::ClaimScopeEnum,
735
- :schema_type => XSD::QName.new(NsXsd, "ClaimScopeEnum"),
736
- :schema_element => [
737
- ["name", "SOAP::SOAPString"],
738
- ["value", "SOAP::SOAPInt"]
739
- ]
740
- )
741
-
742
- DocumentEncodedRegistry.register(
743
- :class => Glexchange::Pdws::ProjectCustomFieldConfiguration,
744
- :schema_type => XSD::QName.new(NsXsd, "ProjectCustomFieldConfiguration"),
745
- :schema_element => [
746
- ["description", "SOAP::SOAPString"],
747
- ["mandatory", "SOAP::SOAPBoolean"],
748
- ["name", "SOAP::SOAPString"],
749
- ["type", "SOAP::SOAPString"],
750
- ["values", "SOAP::SOAPString"]
751
- ]
752
- )
753
-
754
- DocumentEncodedRegistry.register(
755
- :class => Glexchange::Pdws::SubmissionCustomFields,
756
- :schema_type => XSD::QName.new(NsXsd, "SubmissionCustomFields"),
757
- :schema_element => [
758
- ["fieldName", "SOAP::SOAPString"],
759
- ["fieldValue", "SOAP::SOAPString"]
760
- ]
761
- )
762
-
763
- DocumentEncodedRegistry.register(
764
- :class => Glexchange::Pdws::UserProfile,
765
- :schema_type => XSD::QName.new(NsXsd, "UserProfile"),
766
- :schema_element => [
767
- ["availableTasks", "SOAP::SOAPInt"],
768
- ["organizationName", "SOAP::SOAPString"],
769
- ["systemRoles", "Glexchange::Pdws::Role[]", [0, nil]],
770
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
771
- ["ticket", "SOAP::SOAPString"],
772
- ["userInfo", "Glexchange::Pdws::UserInfo"],
773
- ["vendorName", "SOAP::SOAPString"]
774
- ]
775
- )
776
-
777
- DocumentEncodedRegistry.register(
778
- :class => Glexchange::Pdws::Role,
779
- :schema_type => XSD::QName.new(NsXsd, "Role"),
780
- :schema_element => [
781
- ["policies", "Glexchange::Pdws::Policy[]", [0, nil]],
782
- ["roleId", "SOAP::SOAPString"],
783
- ["roleType", "Glexchange::Pdws::RoleTypeEnum"],
784
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
785
- ["ticket", "SOAP::SOAPString"]
786
- ]
787
- )
788
-
789
- DocumentEncodedRegistry.register(
790
- :class => Glexchange::Pdws::RoleTypeEnum,
791
- :schema_type => XSD::QName.new(NsXsd, "RoleTypeEnum"),
792
- :schema_element => [
793
- ["value", "SOAP::SOAPInt"]
794
- ]
795
- )
796
-
797
- DocumentEncodedRegistry.register(
798
- :class => Glexchange::Pdws::Policy,
799
- :schema_type => XSD::QName.new(NsXsd, "Policy"),
800
- :schema_element => [
801
- ["category", "SOAP::SOAPString"],
802
- ["policyId", "SOAP::SOAPString"],
803
- ["policyType", "Glexchange::Pdws::RoleTypeEnum"]
804
- ]
805
- )
806
-
807
- DocumentEncodedRegistry.register(
808
- :class => Glexchange::Pdws::LanguageWorkflowInfo,
809
- :schema_type => XSD::QName.new(NsXsd, "LanguageWorkflowInfo"),
810
- :schema_element => [
811
- ["sourceLanguage", "Glexchange::Pdws::Language"],
812
- ["targetLanguage", "Glexchange::Pdws::Language"]
813
- ]
814
- )
815
-
816
- DocumentEncodedRegistry.register(
817
- :class => Glexchange::Pdws::BatchWorkflowInfo,
818
- :schema_type => XSD::QName.new(NsXsd, "BatchWorkflowInfo"),
819
- :schema_element => [
820
- ["batchName", "SOAP::SOAPString"],
821
- ["languageWorkflowInfo", "Glexchange::Pdws::LanguageWorkflowInfo"]
822
- ]
823
- )
824
-
825
- DocumentEncodedRegistry.register(
826
- :class => Glexchange::Pdws::TargetWorkflowInfo,
827
- :schema_type => XSD::QName.new(NsXsd, "TargetWorkflowInfo"),
828
- :schema_element => [
829
- ["batchName", "SOAP::SOAPString"],
830
- ["documentName", "SOAP::SOAPString"],
831
- ["fileName", "SOAP::SOAPString"],
832
- ["sourceLanguage", "Glexchange::Pdws::Language"],
833
- ["targetLanguage", "Glexchange::Pdws::Language"],
834
- ["targetTicket", "SOAP::SOAPString"]
835
- ]
836
- )
837
-
838
- DocumentEncodedRegistry.register(
839
- :class => Glexchange::Pdws::SubmissionWorkflowInfo,
840
- :schema_type => XSD::QName.new(NsXsd, "SubmissionWorkflowInfo"),
841
- :schema_element => [
842
- ["batchWorkflowInfos", "Glexchange::Pdws::BatchWorkflowInfo[]", [0, nil]],
843
- ["languageWorkflowInfos", "Glexchange::Pdws::LanguageWorkflowInfo[]", [0, nil]],
844
- ["phaseName", "SOAP::SOAPString"],
845
- ["submissionId", "SOAP::SOAPLong"],
846
- ["submissionName", "SOAP::SOAPString"],
847
- ["submissionTicket", "SOAP::SOAPString"],
848
- ["targetWorkflowInfos", "Glexchange::Pdws::TargetWorkflowInfo[]", [0, nil]]
849
- ]
850
- )
851
-
852
- DocumentEncodedRegistry.register(
853
- :class => Glexchange::Pdws::WorkflowRequest,
854
- :schema_type => XSD::QName.new(NsXsd, "WorkflowRequest"),
855
- :schema_element => [
856
- ["batchWorkflowInfos", "Glexchange::Pdws::BatchWorkflowInfo[]", [0, nil]],
857
- ["languageWorkflowInfos", "Glexchange::Pdws::LanguageWorkflowInfo[]", [0, nil]],
858
- ["phaseName", "SOAP::SOAPString"],
859
- ["submissionTicket", "SOAP::SOAPString"],
860
- ["targetWorkflowInfos", "Glexchange::Pdws::TargetWorkflowInfo[]", [0, nil]]
861
- ]
862
- )
863
-
864
- DocumentEncodedRegistry.register(
865
- :class => Glexchange::Pdws::WorkflowRequestTicket,
866
- :schema_type => XSD::QName.new(NsXsd, "WorkflowRequestTicket"),
867
- :schema_element => [
868
- ["message", "SOAP::SOAPString"],
869
- ["processTicket", "SOAP::SOAPString"],
870
- ["submissionTicket", "SOAP::SOAPString"]
871
- ]
872
- )
873
-
874
- DocumentEncodedRegistry.register(
875
- :class => Glexchange::Pdws::DownloadActionResult,
876
- :schema_type => XSD::QName.new(NsXsd, "DownloadActionResult"),
877
- :schema_element => [
878
- ["message", "SOAP::SOAPString"],
879
- ["processingFinished", "SOAP::SOAPBoolean"],
880
- ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
881
- ]
882
- )
883
-
884
- DocumentEncodedRegistry.register(
885
- :class => Glexchange::Pdws::UploadActionResult,
886
- :schema_type => XSD::QName.new(NsXsd, "UploadActionResult"),
887
- :schema_element => [
888
- ["messages", "SOAP::SOAPString[]", [0, nil]],
889
- ["processingFinished", "SOAP::SOAPBoolean"]
890
- ]
891
- )
892
-
893
- DocumentEncodedRegistry.register(
894
- :class => Glexchange::Pdws::DownloadCollateralResult,
895
- :schema_type => XSD::QName.new(NsXsd, "DownloadCollateralResult"),
896
- :schema_element => [
897
- ["errorMessages", "SOAP::SOAPString[]", [0, nil]],
898
- ["processingFinished", "SOAP::SOAPBoolean"],
899
- ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
900
- ]
901
- )
902
-
903
- DocumentEncodedRegistry.register(
904
- :class => Glexchange::Pdws::Base64Binary,
905
- :schema_type => XSD::QName.new(NsXmlmime, "base64Binary"),
906
- :schema_attribute => {
907
- XSD::QName.new(NsXmlmime, "contentType") => "SOAP::SOAPString"
908
- }
909
- )
910
-
911
- DocumentEncodedRegistry.register(
912
- :class => Glexchange::Pdws::HexBinary,
913
- :schema_type => XSD::QName.new(NsXmlmime, "hexBinary"),
914
- :schema_attribute => {
915
- XSD::QName.new(NsXmlmime, "contentType") => "SOAP::SOAPString"
916
- }
917
- )
918
-
919
- DocumentLiteralRegistry.register(
920
- :class => Glexchange::Pdws::Notification,
921
- :schema_type => XSD::QName.new(NsXsd, "Notification"),
922
- :schema_element => [
923
- ["errorMessage", "SOAP::SOAPString"],
924
- ["notificationDate", "Glexchange::Pdws::Date"],
925
- ["notificationPriority", "Glexchange::Pdws::NotificationPriority"],
926
- ["notificationText", "SOAP::SOAPString"]
927
- ]
928
- )
929
-
930
- DocumentLiteralRegistry.register(
931
- :class => Glexchange::Pdws::NotificationPriority,
932
- :schema_type => XSD::QName.new(NsXsd, "NotificationPriority"),
933
- :schema_element => [
934
- ["notificationPriorityName", "SOAP::SOAPString"]
935
- ]
936
- )
937
-
938
- DocumentLiteralRegistry.register(
939
- :class => Glexchange::Pdws::Announcement,
940
- :schema_type => XSD::QName.new(NsXsd, "Announcement"),
941
- :schema_element => [
942
- ["announcementText", "SOAP::SOAPString"],
943
- ["date", "Glexchange::Pdws::Date"]
944
- ]
945
- )
946
-
947
- DocumentLiteralRegistry.register(
948
- :class => Glexchange::Pdws::Batch,
949
- :schema_type => XSD::QName.new(NsXsd, "Batch"),
950
- :schema_element => [
951
- ["name", "SOAP::SOAPString"],
952
- ["targetLanguages", "SOAP::SOAPString[]", [0, nil]],
953
- ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
954
- ]
955
- )
956
-
957
- DocumentLiteralRegistry.register(
958
- :class => Glexchange::Pdws::ContentMonitorPluginInfo,
959
- :schema_type => XSD::QName.new(NsXsd, "ContentMonitorPluginInfo"),
960
- :schema_element => [
961
- ["pluginId", "SOAP::SOAPString"],
962
- ["pluginName", "SOAP::SOAPString"]
963
- ]
964
- )
965
-
966
- DocumentLiteralRegistry.register(
967
- :class => Glexchange::Pdws::Date,
968
- :schema_type => XSD::QName.new(NsXsd, "Date"),
969
- :schema_element => [
970
- ["critical", "SOAP::SOAPBoolean"],
971
- ["date", "SOAP::SOAPLong"]
972
- ]
973
- )
974
-
975
- DocumentLiteralRegistry.register(
976
- :class => Glexchange::Pdws::Document,
977
- :schema_type => XSD::QName.new(NsXsd, "Document"),
978
- :schema_element => [
979
- ["documentGroup", "Glexchange::Pdws::DocumentGroup"],
980
- ["documentInfo", "Glexchange::Pdws::DocumentInfo"],
981
- ["id", "SOAP::SOAPString"],
982
- ["sourceLanguage", "Glexchange::Pdws::Language"],
983
- ["sourceWordCount", "SOAP::SOAPInt"],
984
- ["ticket", "SOAP::SOAPString"]
985
- ]
986
- )
987
-
988
- DocumentLiteralRegistry.register(
989
- :class => Glexchange::Pdws::DocumentGroup,
990
- :schema_type => XSD::QName.new(NsXsd, "DocumentGroup"),
991
- :schema_element => [
992
- ["classifier", "SOAP::SOAPString"],
993
- ["documents", "Glexchange::Pdws::Document[]", [0, nil]],
994
- ["mimeType", "SOAP::SOAPString"],
995
- ["submission", "Glexchange::Pdws::Submission"]
996
- ]
997
- )
998
-
999
- DocumentLiteralRegistry.register(
1000
- :class => Glexchange::Pdws::DocumentInfo,
1001
- :schema_type => XSD::QName.new(NsXsd, "DocumentInfo"),
1002
- :schema_element => [
1003
- ["childDocumentInfos", "Glexchange::Pdws::DocumentInfo[]", [0, nil]],
1004
- ["clientIdentifier", "SOAP::SOAPString"],
1005
- ["dateRequested", "Glexchange::Pdws::Date"],
1006
- ["instructions", "SOAP::SOAPString"],
1007
- ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
1008
- ["name", "SOAP::SOAPString"],
1009
- ["projectTicket", "SOAP::SOAPString"],
1010
- ["sourceLocale", "SOAP::SOAPString"],
1011
- ["submissionTicket", "SOAP::SOAPString"],
1012
- ["targetInfos", "Glexchange::Pdws::TargetInfo[]", [0, nil]],
1013
- ["wordCount", "SOAP::SOAPInt"]
1014
- ]
1015
- )
1016
-
1017
- DocumentLiteralRegistry.register(
1018
- :class => Glexchange::Pdws::DocumentPagedList,
1019
- :schema_type => XSD::QName.new(NsXsd, "DocumentPagedList"),
1020
- :schema_element => [
1021
- ["elements", "Glexchange::Pdws::Document[]", [0, nil]],
1022
- ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
1023
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1024
- ["totalCount", "SOAP::SOAPLong"]
1025
- ]
1026
- )
1027
-
1028
- DocumentLiteralRegistry.register(
1029
- :class => Glexchange::Pdws::DocumentSearchRequest,
1030
- :schema_type => XSD::QName.new(NsXsd, "DocumentSearchRequest"),
1031
- :schema_element => [
1032
- ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
1033
- ["sourceLocaleId", "SOAP::SOAPString"],
1034
- ["submissionTicket", "SOAP::SOAPString"]
1035
- ]
1036
- )
1037
-
1038
- DocumentLiteralRegistry.register(
1039
- :class => Glexchange::Pdws::DocumentTicket,
1040
- :schema_type => XSD::QName.new(NsXsd, "DocumentTicket"),
1041
- :schema_element => [
1042
- ["submissionTicket", "SOAP::SOAPString"],
1043
- ["ticketId", "SOAP::SOAPString"]
1044
- ]
1045
- )
1046
-
1047
- DocumentLiteralRegistry.register(
1048
- :class => Glexchange::Pdws::EntityTypeEnum,
1049
- :schema_type => XSD::QName.new(NsXsd, "EntityTypeEnum"),
1050
- :schema_element => [
1051
- ["name", "SOAP::SOAPString"],
1052
- ["value", "SOAP::SOAPInt"]
1053
- ]
1054
- )
1055
-
1056
- DocumentLiteralRegistry.register(
1057
- :class => Glexchange::Pdws::FileFormatProfile,
1058
- :schema_type => XSD::QName.new(NsXsd, "FileFormatProfile"),
1059
- :schema_element => [
1060
- ["configurable", "SOAP::SOAPBoolean"],
1061
- ["isDefault", "SOAP::SOAPBoolean"],
1062
- ["mimeType", "SOAP::SOAPString"],
1063
- ["pluginId", "SOAP::SOAPString"],
1064
- ["pluginName", "SOAP::SOAPString"],
1065
- ["profileName", "SOAP::SOAPString"],
1066
- ["targetWorkflowDefinition", "Glexchange::Pdws::WorkflowDefinition"],
1067
- ["ticket", "SOAP::SOAPString"]
1068
- ]
1069
- )
1070
-
1071
- DocumentLiteralRegistry.register(
1072
- :class => Glexchange::Pdws::FileFormatProgressData,
1073
- :schema_type => XSD::QName.new(NsXsd, "FileFormatProgressData"),
1074
- :schema_element => [
1075
- ["dateCompleted", "Glexchange::Pdws::Date"],
1076
- ["fileCount", "SOAP::SOAPLong"],
1077
- ["fileFormatName", "SOAP::SOAPString"],
1078
- ["fileProgressData", "Glexchange::Pdws::FileProgressData"],
1079
- ["jobTicket", "SOAP::SOAPString"],
1080
- ["workflowDueDate", "Glexchange::Pdws::Date"],
1081
- ["workflowStatus", "SOAP::SOAPString"]
1082
- ]
1083
- )
1084
-
1085
- DocumentLiteralRegistry.register(
1086
- :class => Glexchange::Pdws::FileProgressData,
1087
- :schema_type => XSD::QName.new(NsXsd, "FileProgressData"),
1088
- :schema_element => [
1089
- ["numberOfAvailableFiles", "SOAP::SOAPInt"],
1090
- ["numberOfCanceledFiles", "SOAP::SOAPInt"],
1091
- ["numberOfCompletedFiles", "SOAP::SOAPInt"],
1092
- ["numberOfDeliveredFiles", "SOAP::SOAPInt"],
1093
- ["numberOfFailedFiles", "SOAP::SOAPInt"],
1094
- ["numberOfInProcessFiles", "SOAP::SOAPInt"],
1095
- ["overallProgressPercent", "SOAP::SOAPInt"]
1096
- ]
1097
- )
1098
-
1099
- DocumentLiteralRegistry.register(
1100
- :class => Glexchange::Pdws::FuzzyTmStatistics,
1101
- :schema_type => XSD::QName.new(NsXsd, "FuzzyTmStatistics"),
1102
- :schema_element => [
1103
- ["fuzzyName", "SOAP::SOAPString"],
1104
- ["wordCount", "SOAP::SOAPInt"]
1105
- ]
1106
- )
1107
-
1108
- DocumentLiteralRegistry.register(
1109
- :class => Glexchange::Pdws::ItemFolderEnum,
1110
- :schema_type => XSD::QName.new(NsXsd, "ItemFolderEnum"),
1111
- :schema_element => [
1112
- ["value", "SOAP::SOAPInt"]
1113
- ]
1114
- )
1115
-
1116
- DocumentLiteralRegistry.register(
1117
- :class => Glexchange::Pdws::ItemStatusEnum,
1118
- :schema_type => XSD::QName.new(NsXsd, "ItemStatusEnum"),
1119
- :schema_element => [
1120
- ["name", "SOAP::SOAPString"],
1121
- ["value", "SOAP::SOAPInt"]
1122
- ]
1123
- )
1124
-
1125
- DocumentLiteralRegistry.register(
1126
- :class => Glexchange::Pdws::Metadata,
1127
- :schema_type => XSD::QName.new(NsXsd, "Metadata"),
1128
- :schema_element => [
1129
- ["key", "SOAP::SOAPString"],
1130
- ["value", "SOAP::SOAPString"]
1131
- ]
1132
- )
1133
-
1134
- DocumentLiteralRegistry.register(
1135
- :class => Glexchange::Pdws::Language,
1136
- :schema_type => XSD::QName.new(NsXsd, "Language"),
1137
- :schema_element => [
1138
- ["locale", "SOAP::SOAPString"],
1139
- ["value", "SOAP::SOAPString"]
1140
- ]
1141
- )
1142
-
1143
- DocumentLiteralRegistry.register(
1144
- :class => Glexchange::Pdws::LanguageDirection,
1145
- :schema_type => XSD::QName.new(NsXsd, "LanguageDirection"),
1146
- :schema_element => [
1147
- ["sourceLanguage", "Glexchange::Pdws::Language"],
1148
- ["targetLanguage", "Glexchange::Pdws::Language"]
1149
- ]
1150
- )
1151
-
1152
- DocumentLiteralRegistry.register(
1153
- :class => Glexchange::Pdws::LanguageDirectionModel,
1154
- :schema_type => XSD::QName.new(NsXsd, "LanguageDirectionModel"),
1155
- :schema_element => [
1156
- ["dateCompleted", "Glexchange::Pdws::Date"],
1157
- ["fileCount", "SOAP::SOAPLong"],
1158
- ["fileFormatProgressData", "Glexchange::Pdws::FileFormatProgressData[]", [0, nil]],
1159
- ["fileProgress", "Glexchange::Pdws::FileProgressData"],
1160
- ["sourceLanguage", "Glexchange::Pdws::Language"],
1161
- ["targetLanguage", "Glexchange::Pdws::Language"],
1162
- ["workflowDueDate", "Glexchange::Pdws::Date"],
1163
- ["workflowStatus", "SOAP::SOAPString"]
1164
- ]
1165
- )
1166
-
1167
- DocumentLiteralRegistry.register(
1168
- :class => Glexchange::Pdws::LanguagePhaseInfo,
1169
- :schema_type => XSD::QName.new(NsXsd, "LanguagePhaseInfo"),
1170
- :schema_element => [
1171
- ["phaseStartDate", "Glexchange::Pdws::Date"],
1172
- ["sourceFileList", "SOAP::SOAPString[]", [0, nil]],
1173
- ["tmStatistics", "Glexchange::Pdws::TmStatistics"]
1174
- ]
1175
- )
1176
-
1177
- DocumentLiteralRegistry.register(
1178
- :class => Glexchange::Pdws::Organization,
1179
- :schema_type => XSD::QName.new(NsXsd, "Organization"),
1180
- :schema_element => [
1181
- ["availableTasks", "SOAP::SOAPInteger"],
1182
- ["parentOrganization", "Glexchange::Pdws::Organization"],
1183
- ["organizationInfo", "Glexchange::Pdws::OrganizationInfo"],
1184
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1185
- ["ticket", "SOAP::SOAPString"]
1186
- ]
1187
- )
1188
-
1189
- DocumentLiteralRegistry.register(
1190
- :class => Glexchange::Pdws::OrganizationInfo,
1191
- :schema_type => XSD::QName.new(NsXsd, "OrganizationInfo"),
1192
- :schema_element => [
1193
- ["name", "SOAP::SOAPString"],
1194
- ["ticket", "SOAP::SOAPString"],
1195
- ["currencyCode", "SOAP::SOAPString"],
1196
- ["domain", "SOAP::SOAPString"],
1197
- ["theme", "SOAP::SOAPString"],
1198
- ["enabled", "SOAP::SOAPBoolean"]
1199
- ]
1200
- )
1201
-
1202
- DocumentLiteralRegistry.register(
1203
- :class => Glexchange::Pdws::PagedListInfo,
1204
- :schema_type => XSD::QName.new(NsXsd, "PagedListInfo"),
1205
- :schema_element => [
1206
- ["index", "SOAP::SOAPInt"],
1207
- ["indexesSize", "SOAP::SOAPInt"],
1208
- ["size", "SOAP::SOAPInt"],
1209
- ["sortDirection", "SOAP::SOAPString"],
1210
- ["sortProperty", "SOAP::SOAPString"]
1211
- ]
1212
- )
1213
-
1214
- DocumentLiteralRegistry.register(
1215
- :class => Glexchange::Pdws::Phase,
1216
- :schema_type => XSD::QName.new(NsXsd, "Phase"),
1217
- :schema_element => [
1218
- ["dateEnded", "Glexchange::Pdws::Date"],
1219
- ["dueDate", "Glexchange::Pdws::Date"],
1220
- ["name", "SOAP::SOAPString"],
1221
- ["status", "Glexchange::Pdws::ItemStatusEnum"]
1222
- ]
1223
- )
1224
-
1225
- DocumentLiteralRegistry.register(
1226
- :class => Glexchange::Pdws::PreviewResult,
1227
- :schema_type => XSD::QName.new(NsXsd, "PreviewResult"),
1228
- :schema_element => [
1229
- ["message", "SOAP::SOAPString"],
1230
- ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
1231
- ]
1232
- )
1233
-
1234
- DocumentLiteralRegistry.register(
1235
- :class => Glexchange::Pdws::Priority,
1236
- :schema_type => XSD::QName.new(NsXsd, "Priority"),
1237
- :schema_element => [
1238
- ["name", "SOAP::SOAPString"],
1239
- ["value", "SOAP::SOAPInt"]
1240
- ]
1241
- )
1242
-
1243
- DocumentLiteralRegistry.register(
1244
- :class => Glexchange::Pdws::Project,
1245
- :schema_type => XSD::QName.new(NsXsd, "Project"),
1246
- :schema_element => [
1247
- ["announcements", "Glexchange::Pdws::Announcement[]", [0, nil]],
1248
- ["contentMonitorPluginInfo", "Glexchange::Pdws::ContentMonitorPluginInfo"],
1249
- ["defaultTargetWorkflowDefinition", "Glexchange::Pdws::WorkflowDefinition"],
1250
- ["defaultTargetWorkflowDefinitionTicket", "SOAP::SOAPString"],
1251
- ["fileFormatProfiles", "Glexchange::Pdws::FileFormatProfile[]", [0, nil]],
1252
- ["includeSubmissionNameInLocalizationKit", "SOAP::SOAPBoolean[]", [0, nil]],
1253
- ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
1254
- ["organizationName", "SOAP::SOAPString"],
1255
- ["projectCustomFieldConfiguration", "Glexchange::Pdws::ProjectCustomFieldConfiguration[]", [0, nil]],
1256
- ["projectInfo", "Glexchange::Pdws::ProjectInfo"],
1257
- ["projectLanguageDirections", "Glexchange::Pdws::ProjectLanguageDirection[]", [0, nil]],
1258
- ["ticket", "SOAP::SOAPString"],
1259
- ["workflowDefinitions", "Glexchange::Pdws::WorkflowDefinition[]", [0, nil]]
1260
- ]
1261
- )
1262
-
1263
- DocumentLiteralRegistry.register(
1264
- :class => Glexchange::Pdws::ProjectInfo,
1265
- :schema_type => XSD::QName.new(NsXsd, "ProjectInfo"),
1266
- :schema_element => [
1267
- ["clientIdentifier", "SOAP::SOAPString"],
1268
- ["defaultJobWorkflowDefinitionTicket", "SOAP::SOAPString"],
1269
- ["defaultSubmissionWorkflowDefinitionTicket", "SOAP::SOAPString"],
1270
- ["defaultTargetWorkflowDefinitionTicket", "SOAP::SOAPString"],
1271
- ["enabled", "SOAP::SOAPBoolean"],
1272
- ["name", "SOAP::SOAPString"],
1273
- ["shortCode", "SOAP::SOAPString"]
1274
- ]
1275
- )
1276
-
1277
- DocumentLiteralRegistry.register(
1278
- :class => Glexchange::Pdws::ProjectLanguage,
1279
- :schema_type => XSD::QName.new(NsXsd, "ProjectLanguage"),
1280
- :schema_element => [
1281
- ["customLocaleCode", "SOAP::SOAPString"],
1282
- ["localeCode", "SOAP::SOAPString"]
1283
- ]
1284
- )
1285
-
1286
- DocumentLiteralRegistry.register(
1287
- :class => Glexchange::Pdws::ProjectLanguageDirection,
1288
- :schema_type => XSD::QName.new(NsXsd, "ProjectLanguageDirection"),
1289
- :schema_element => [
1290
- ["sourceLanguage", "Glexchange::Pdws::Language"],
1291
- ["targetLanguage", "Glexchange::Pdws::Language"],
1292
- ["default", "SOAP::SOAPBoolean"],
1293
- ["frequent", "SOAP::SOAPBoolean"]
1294
- ]
1295
- )
1296
-
1297
- DocumentLiteralRegistry.register(
1298
- :class => Glexchange::Pdws::ProjectAClient,
1299
- :schema_type => XSD::QName.new(NsXsd, "ProjectAClient"),
1300
- :schema_element => [
1301
- ["enabled", "SOAP::SOAPBoolean"],
1302
- ["name", "SOAP::SOAPString"],
1303
- ["parentOrganization", "Glexchange::Pdws::Organization"],
1304
- ["ticket", "SOAP::SOAPString"]
1305
- ]
1306
- )
1307
-
1308
- DocumentLiteralRegistry.register(
1309
- :class => Glexchange::Pdws::RepositoryItem,
1310
- :schema_type => XSD::QName.new(NsXsd, "RepositoryItem"),
1311
- :schema_element => [
1312
- ["data", "Glexchange::Pdws::Base64Binary"],
1313
- ["resourceInfo", "Glexchange::Pdws::ResourceInfo"]
1314
- ]
1315
- )
1316
-
1317
- DocumentLiteralRegistry.register(
1318
- :class => Glexchange::Pdws::ResourceInfo,
1319
- :schema_type => XSD::QName.new(NsXsd, "ResourceInfo"),
1320
- :schema_element => [
1321
- ["classifier", "SOAP::SOAPString"],
1322
- ["clientIdentifier", "SOAP::SOAPString"],
1323
- ["description", "SOAP::SOAPString"],
1324
- ["encoding", "SOAP::SOAPString"],
1325
- ["md5Checksum", "SOAP::SOAPString"],
1326
- ["mimeType", "SOAP::SOAPString"],
1327
- ["name", "SOAP::SOAPString"],
1328
- ["path", "SOAP::SOAPString"],
1329
- ["resourceInfoId", "SOAP::SOAPLong"],
1330
- ["size", "SOAP::SOAPLong"],
1331
- ["type", "Glexchange::Pdws::ResourceType"]
1332
- ]
1333
- )
1334
-
1335
- DocumentLiteralRegistry.register(
1336
- :class => Glexchange::Pdws::ResourceType,
1337
- :schema_type => XSD::QName.new(NsXsd, "ResourceType"),
1338
- :schema_element => [
1339
- ["value", "SOAP::SOAPInt"]
1340
- ]
1341
- )
1342
-
1343
- DocumentLiteralRegistry.register(
1344
- :class => Glexchange::Pdws::Submission,
1345
- :schema_type => XSD::QName.new(NsXsd, "Submission"),
1346
- :schema_element => [
1347
- ["alerts", "Glexchange::Pdws::Notification[]", [0, nil]],
1348
- ["availableTasks", "SOAP::SOAPInt"],
1349
- ["batches", "Glexchange::Pdws::Batch[]", [0, nil]],
1350
- ["dateArchived", "Glexchange::Pdws::Date"],
1351
- ["dateCompleted", "Glexchange::Pdws::Date"],
1352
- ["dateCreated", "Glexchange::Pdws::Date"],
1353
- ["dateEstimated", "Glexchange::Pdws::Date"],
1354
- ["documents", "Glexchange::Pdws::Document[]", [0, nil]],
1355
- ["dueDate", "Glexchange::Pdws::Date"],
1356
- ["id", "SOAP::SOAPString"],
1357
- ["owner", "SOAP::SOAPString"],
1358
- ["project", "Glexchange::Pdws::Project"],
1359
- ["status", "Glexchange::Pdws::ItemStatusEnum"],
1360
- ["submissionId", "SOAP::SOAPLong"],
1361
- ["submissionInfo", "Glexchange::Pdws::SubmissionInfo"],
1362
- ["submitterFullNames", "SOAP::SOAPString[]", [0, nil]],
1363
- ["ticket", "SOAP::SOAPString"],
1364
- ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
1365
- ]
1366
- )
1367
-
1368
- DocumentLiteralRegistry.register(
1369
- :class => Glexchange::Pdws::SubmissionInfo,
1370
- :schema_type => XSD::QName.new(NsXsd, "SubmissionInfo"),
1371
- :schema_element => [
1372
- ["additionalCosts", "SOAP::SOAPString"],
1373
- ["autoStartChilds", "SOAP::SOAPBoolean"],
1374
- ["claimScope", "Glexchange::Pdws::ClaimScopeEnum"],
1375
- ["clientIdentifier", "SOAP::SOAPString"],
1376
- ["dateRequested", "Glexchange::Pdws::Date"],
1377
- ["internalNotes", "SOAP::SOAPString"],
1378
- ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
1379
- ["name", "SOAP::SOAPString"],
1380
- ["officeName", "SOAP::SOAPString"],
1381
- ["paClientTicket", "SOAP::SOAPString"],
1382
- ["paJobNumber", "SOAP::SOAPString"],
1383
- ["priority", "Glexchange::Pdws::Priority"],
1384
- ["projectTicket", "SOAP::SOAPString"],
1385
- ["revenue", "SOAP::SOAPDouble"],
1386
- ["submissionBackground", "SOAP::SOAPString"],
1387
- ["submissionCustomFields", "Glexchange::Pdws::SubmissionCustomFields[]", [0, nil]],
1388
- ["submitters", "SOAP::SOAPString[]", [0, nil]],
1389
- ["workflowDefinitionTicket", "SOAP::SOAPString"]
1390
- ]
1391
- )
1392
-
1393
- DocumentLiteralRegistry.register(
1394
- :class => Glexchange::Pdws::SubmissionPagedList,
1395
- :schema_type => XSD::QName.new(NsXsd, "SubmissionPagedList"),
1396
- :schema_element => [
1397
- ["elements", "Glexchange::Pdws::Submission[]", [0, nil]],
1398
- ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
1399
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1400
- ["totalCount", "SOAP::SOAPLong"]
1401
- ]
1402
- )
1403
-
1404
- DocumentLiteralRegistry.register(
1405
- :class => Glexchange::Pdws::SimpleSubmissionSearchModel,
1406
- :schema_type => XSD::QName.new(NsXsd, "SimpleSubmissionSearchModel"),
1407
- :schema_element => [
1408
- ["alerts", "Glexchange::Pdws::Notification[]", [0, nil]],
1409
- ["availableTasks", "SOAP::SOAPLong"],
1410
- ["budgetStatus", "SOAP::SOAPInt"],
1411
- ["claimScope", "Glexchange::Pdws::ClaimScopeEnum"],
1412
- ["customFields", "SOAP::SOAPString[]", [0, nil]],
1413
- ["date", "Glexchange::Pdws::Date"],
1414
- ["dateArchived", "Glexchange::Pdws::Date"],
1415
- ["dateCompleted", "Glexchange::Pdws::Date"],
1416
- ["dateStarted", "Glexchange::Pdws::Date"],
1417
- ["dueDate", "Glexchange::Pdws::Date"],
1418
- ["fileCount", "SOAP::SOAPLong"],
1419
- ["fileProgress", "Glexchange::Pdws::FileProgressData"],
1420
- ["gate", "SOAP::SOAPByte"],
1421
- ["id", "SOAP::SOAPString"],
1422
- ["instructions", "SOAP::SOAPString"],
1423
- ["officeName", "SOAP::SOAPString"],
1424
- ["owner", "Glexchange::Pdws::UserData[]", [0, nil]],
1425
- ["paClientName", "SOAP::SOAPString"],
1426
- ["parentSubmissionName", "SOAP::SOAPString"],
1427
- ["parentTicket", "SOAP::SOAPString"],
1428
- ["pmNotes", "SOAP::SOAPString"],
1429
- ["priority", "SOAP::SOAPString"],
1430
- ["projectName", "SOAP::SOAPString"],
1431
- ["projectTicket", "SOAP::SOAPString"],
1432
- ["quote", "SOAP::SOAPByte"],
1433
- ["reserved", "SOAP::SOAPBoolean"],
1434
- ["sourceLanguage", "SOAP::SOAPString"],
1435
- ["status", "Glexchange::Pdws::ItemStatusEnum"],
1436
- ["submissionBackground", "SOAP::SOAPString"],
1437
- ["submissionName", "SOAP::SOAPString"],
1438
- ["submitterFullName", "Glexchange::Pdws::UserData[]", [0, nil]],
1439
- ["ticket", "SOAP::SOAPString"],
1440
- ["wordCount", "SOAP::SOAPLong"],
1441
- ["workflowDueDate", "Glexchange::Pdws::Date"],
1442
- ["workflowStatus", "SOAP::SOAPString"]
1443
- ]
1444
- )
1445
-
1446
- DocumentLiteralRegistry.register(
1447
- :class => Glexchange::Pdws::SubmissionSearchModelPagedList,
1448
- :schema_type => XSD::QName.new(NsXsd, "SubmissionSearchModelPagedList"),
1449
- :schema_element => [
1450
- ["elements", "Glexchange::Pdws::SimpleSubmissionSearchModel[]", [0, nil]],
1451
- ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
1452
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1453
- ["totalCount", "SOAP::SOAPLong"]
1454
- ]
1455
- )
1456
-
1457
- DocumentLiteralRegistry.register(
1458
- :class => Glexchange::Pdws::SubmissionSearchRequest,
1459
- :schema_type => XSD::QName.new(NsXsd, "SubmissionSearchRequest"),
1460
- :schema_element => [
1461
- ["folder", "Glexchange::Pdws::ItemFolderEnum"],
1462
- ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
1463
- ["submissionDate", "Glexchange::Pdws::Date"],
1464
- ["submissionDueDate", "Glexchange::Pdws::Date"],
1465
- ["submissionName", "SOAP::SOAPString"]
1466
- ]
1467
- )
1468
-
1469
- DocumentLiteralRegistry.register(
1470
- :class => Glexchange::Pdws::Target,
1471
- :schema_type => XSD::QName.new(NsXsd, "Target"),
1472
- :schema_element => [
1473
- ["availableTasks", "SOAP::SOAPLong"],
1474
- ["dateCompleted", "Glexchange::Pdws::Date"],
1475
- ["dateCreated", "Glexchange::Pdws::Date"],
1476
- ["dateEstimated", "Glexchange::Pdws::Date"],
1477
- ["document", "Glexchange::Pdws::Document"],
1478
- ["downloadThresholdTimeStamp", "Glexchange::Pdws::Date"],
1479
- ["dueDate", "Glexchange::Pdws::Date"],
1480
- ["fileName", "SOAP::SOAPString"],
1481
- ["id", "SOAP::SOAPString"],
1482
- ["phases", "Glexchange::Pdws::Phase[]", [0, nil]],
1483
- ["refPhase", "Glexchange::Pdws::Phase"],
1484
- ["sourceLanguage", "Glexchange::Pdws::Language"],
1485
- ["sourceWordCount", "SOAP::SOAPInt"],
1486
- ["status", "Glexchange::Pdws::ItemStatusEnum"],
1487
- ["targetInfo", "Glexchange::Pdws::TargetInfo"],
1488
- ["targetLanguage", "Glexchange::Pdws::Language"],
1489
- ["targetWordCount", "SOAP::SOAPInt"],
1490
- ["ticket", "SOAP::SOAPString"],
1491
- ["tmStatistics", "Glexchange::Pdws::TmStatistics"],
1492
- ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
1493
- ]
1494
- )
1495
-
1496
- DocumentLiteralRegistry.register(
1497
- :class => Glexchange::Pdws::TargetInfo,
1498
- :schema_type => XSD::QName.new(NsXsd, "TargetInfo"),
1499
- :schema_element => [
1500
- ["dateRequested", "Glexchange::Pdws::Date"],
1501
- ["encoding", "SOAP::SOAPString"],
1502
- ["instructions", "SOAP::SOAPString"],
1503
- ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
1504
- ["priority", "Glexchange::Pdws::Priority"],
1505
- ["requestedDueDate", "SOAP::SOAPLong"],
1506
- ["targetLocale", "SOAP::SOAPString"],
1507
- ["workflowDefinitionTicket", "SOAP::SOAPString"]
1508
- ]
1509
- )
1510
-
1511
- DocumentLiteralRegistry.register(
1512
- :class => Glexchange::Pdws::TargetPagedList,
1513
- :schema_type => XSD::QName.new(NsXsd, "TargetPagedList"),
1514
- :schema_element => [
1515
- ["elements", "Glexchange::Pdws::Target[]", [0, nil]],
1516
- ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
1517
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1518
- ["totalCount", "SOAP::SOAPLong"]
1519
- ]
1520
- )
1521
-
1522
- DocumentLiteralRegistry.register(
1523
- :class => Glexchange::Pdws::TargetSearchRequest,
1524
- :schema_type => XSD::QName.new(NsXsd, "TargetSearchRequest"),
1525
- :schema_element => [
1526
- ["dateCreated", "Glexchange::Pdws::Date"],
1527
- ["folder", "Glexchange::Pdws::ItemFolderEnum"],
1528
- ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
1529
- ["sourceLocaleId", "SOAP::SOAPString"],
1530
- ["submissionTicket", "SOAP::SOAPString"],
1531
- ["targetLocaleId", "SOAP::SOAPString"]
1532
- ]
1533
- )
1534
-
1535
- DocumentLiteralRegistry.register(
1536
- :class => Glexchange::Pdws::Task,
1537
- :schema_type => XSD::QName.new(NsXsd, "Task"),
1538
- :schema_element => [
1539
- ["groupName", "SOAP::SOAPString"],
1540
- ["selectStyle", "SOAP::SOAPInt"],
1541
- ["taskId", "SOAP::SOAPInt"],
1542
- ["taskName", "SOAP::SOAPString"],
1543
- ["weight", "SOAP::SOAPInt"]
1544
- ]
1545
- )
1546
-
1547
- DocumentLiteralRegistry.register(
1548
- :class => Glexchange::Pdws::TmStatistics,
1549
- :schema_type => XSD::QName.new(NsXsd, "TmStatistics"),
1550
- :schema_element => [
1551
- ["fuzzyRepetitionsWordCount1", "Glexchange::Pdws::FuzzyTmStatistics"],
1552
- ["fuzzyRepetitionsWordCount10", "Glexchange::Pdws::FuzzyTmStatistics"],
1553
- ["fuzzyRepetitionsWordCount2", "Glexchange::Pdws::FuzzyTmStatistics"],
1554
- ["fuzzyRepetitionsWordCount3", "Glexchange::Pdws::FuzzyTmStatistics"],
1555
- ["fuzzyRepetitionsWordCount4", "Glexchange::Pdws::FuzzyTmStatistics"],
1556
- ["fuzzyRepetitionsWordCount5", "Glexchange::Pdws::FuzzyTmStatistics"],
1557
- ["fuzzyRepetitionsWordCount6", "Glexchange::Pdws::FuzzyTmStatistics"],
1558
- ["fuzzyRepetitionsWordCount7", "Glexchange::Pdws::FuzzyTmStatistics"],
1559
- ["fuzzyRepetitionsWordCount8", "Glexchange::Pdws::FuzzyTmStatistics"],
1560
- ["fuzzyRepetitionsWordCount9", "Glexchange::Pdws::FuzzyTmStatistics"],
1561
- ["fuzzyWordCount1", "Glexchange::Pdws::FuzzyTmStatistics"],
1562
- ["fuzzyWordCount10", "Glexchange::Pdws::FuzzyTmStatistics"],
1563
- ["fuzzyWordCount2", "Glexchange::Pdws::FuzzyTmStatistics"],
1564
- ["fuzzyWordCount3", "Glexchange::Pdws::FuzzyTmStatistics"],
1565
- ["fuzzyWordCount4", "Glexchange::Pdws::FuzzyTmStatistics"],
1566
- ["fuzzyWordCount5", "Glexchange::Pdws::FuzzyTmStatistics"],
1567
- ["fuzzyWordCount6", "Glexchange::Pdws::FuzzyTmStatistics"],
1568
- ["fuzzyWordCount7", "Glexchange::Pdws::FuzzyTmStatistics"],
1569
- ["fuzzyWordCount8", "Glexchange::Pdws::FuzzyTmStatistics"],
1570
- ["fuzzyWordCount9", "Glexchange::Pdws::FuzzyTmStatistics"],
1571
- ["inContextMatchWordCount", "SOAP::SOAPInt"],
1572
- ["noMatchWordCount", "SOAP::SOAPInt"],
1573
- ["oneHundredMatchWordCount", "SOAP::SOAPInt"],
1574
- ["repetitionWordCount", "SOAP::SOAPInt"],
1575
- ["totalWordCount", "SOAP::SOAPInt"]
1576
- ]
1577
- )
1578
-
1579
- DocumentLiteralRegistry.register(
1580
- :class => Glexchange::Pdws::WorkflowDefinition,
1581
- :schema_type => XSD::QName.new(NsXsd, "WorkflowDefinition"),
1582
- :schema_element => [
1583
- ["description", "SOAP::SOAPString"],
1584
- ["name", "SOAP::SOAPString"],
1585
- ["ticket", "SOAP::SOAPString"],
1586
- ["type", "Glexchange::Pdws::EntityTypeEnum"]
1587
- ]
1588
- )
1589
-
1590
- DocumentLiteralRegistry.register(
1591
- :class => Glexchange::Pdws::UserData,
1592
- :schema_type => XSD::QName.new(NsXsd, "UserData"),
1593
- :schema_element => [
1594
- ["email", "SOAP::SOAPString"],
1595
- ["name", "SOAP::SOAPString"]
1596
- ]
1597
- )
1598
-
1599
- DocumentLiteralRegistry.register(
1600
- :class => Glexchange::Pdws::UserInfo,
1601
- :schema_type => XSD::QName.new(NsXsd, "UserInfo"),
1602
- :schema_element => [
1603
- ["accountLocked", "SOAP::SOAPBoolean"],
1604
- ["accountNonExpired", "SOAP::SOAPBoolean"],
1605
- ["address", "SOAP::SOAPString"],
1606
- ["autoClaimMultipleTasks", "SOAP::SOAPBoolean"],
1607
- ["claimMultipleJobTasks", "SOAP::SOAPBoolean"],
1608
- ["credentialsNonExpired", "SOAP::SOAPBoolean"],
1609
- ["dateLastLogin", "SOAP::SOAPDateTime"],
1610
- ["department", "SOAP::SOAPString"],
1611
- ["emailAddress", "SOAP::SOAPString"],
1612
- ["emailNotification", "SOAP::SOAPBoolean"],
1613
- ["enabled", "SOAP::SOAPBoolean"],
1614
- ["fax", "SOAP::SOAPString"],
1615
- ["firstName", "SOAP::SOAPString"],
1616
- ["lastName", "SOAP::SOAPString"],
1617
- ["password", "SOAP::SOAPString"],
1618
- ["phone1", "SOAP::SOAPString"],
1619
- ["phone2", "SOAP::SOAPString"],
1620
- ["timeZone", "SOAP::SOAPString"],
1621
- ["userName", "SOAP::SOAPString"],
1622
- ["userType", "SOAP::SOAPString"]
1623
- ]
1624
- )
1625
-
1626
- DocumentLiteralRegistry.register(
1627
- :class => Glexchange::Pdws::TiUserInfo,
1628
- :schema_type => XSD::QName.new(NsXsd, "TiUserInfo"),
1629
- :schema_element => [
1630
- ["languageDirections", "Glexchange::Pdws::LanguageDirection[]", [0, nil]],
1631
- ["organizationId", "SOAP::SOAPLong"],
1632
- ["projectRoles", "SOAP::SOAPString[]", [0, nil]],
1633
- ["projectTicket", "SOAP::SOAPString[]", [0, nil]],
1634
- ["systemRoles", "SOAP::SOAPString[]", [0, nil]],
1635
- ["vendorId", "SOAP::SOAPLong"]
1636
- ]
1637
- )
1638
-
1639
- DocumentLiteralRegistry.register(
1640
- :class => Glexchange::Pdws::ClaimScopeEnum,
1641
- :schema_type => XSD::QName.new(NsXsd, "ClaimScopeEnum"),
1642
- :schema_element => [
1643
- ["name", "SOAP::SOAPString"],
1644
- ["value", "SOAP::SOAPInt"]
1645
- ]
1646
- )
1647
-
1648
- DocumentLiteralRegistry.register(
1649
- :class => Glexchange::Pdws::ProjectCustomFieldConfiguration,
1650
- :schema_type => XSD::QName.new(NsXsd, "ProjectCustomFieldConfiguration"),
1651
- :schema_element => [
1652
- ["description", "SOAP::SOAPString"],
1653
- ["mandatory", "SOAP::SOAPBoolean"],
1654
- ["name", "SOAP::SOAPString"],
1655
- ["type", "SOAP::SOAPString"],
1656
- ["values", "SOAP::SOAPString"]
1657
- ]
1658
- )
1659
-
1660
- DocumentLiteralRegistry.register(
1661
- :class => Glexchange::Pdws::SubmissionCustomFields,
1662
- :schema_type => XSD::QName.new(NsXsd, "SubmissionCustomFields"),
1663
- :schema_element => [
1664
- ["fieldName", "SOAP::SOAPString"],
1665
- ["fieldValue", "SOAP::SOAPString"]
1666
- ]
1667
- )
1668
-
1669
- DocumentLiteralRegistry.register(
1670
- :class => Glexchange::Pdws::UserProfile,
1671
- :schema_type => XSD::QName.new(NsXsd, "UserProfile"),
1672
- :schema_element => [
1673
- ["availableTasks", "SOAP::SOAPInt"],
1674
- ["organizationName", "SOAP::SOAPString"],
1675
- ["systemRoles", "Glexchange::Pdws::Role[]", [0, nil]],
1676
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1677
- ["ticket", "SOAP::SOAPString"],
1678
- ["userInfo", "Glexchange::Pdws::UserInfo"],
1679
- ["vendorName", "SOAP::SOAPString"]
1680
- ]
1681
- )
1682
-
1683
- DocumentLiteralRegistry.register(
1684
- :class => Glexchange::Pdws::Role,
1685
- :schema_type => XSD::QName.new(NsXsd, "Role"),
1686
- :schema_element => [
1687
- ["policies", "Glexchange::Pdws::Policy[]", [0, nil]],
1688
- ["roleId", "SOAP::SOAPString"],
1689
- ["roleType", "Glexchange::Pdws::RoleTypeEnum"],
1690
- ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1691
- ["ticket", "SOAP::SOAPString"]
1692
- ]
1693
- )
1694
-
1695
- DocumentLiteralRegistry.register(
1696
- :class => Glexchange::Pdws::RoleTypeEnum,
1697
- :schema_type => XSD::QName.new(NsXsd, "RoleTypeEnum"),
1698
- :schema_element => [
1699
- ["value", "SOAP::SOAPInt"]
1700
- ]
1701
- )
1702
-
1703
- DocumentLiteralRegistry.register(
1704
- :class => Glexchange::Pdws::Policy,
1705
- :schema_type => XSD::QName.new(NsXsd, "Policy"),
1706
- :schema_element => [
1707
- ["category", "SOAP::SOAPString"],
1708
- ["policyId", "SOAP::SOAPString"],
1709
- ["policyType", "Glexchange::Pdws::RoleTypeEnum"]
1710
- ]
1711
- )
1712
-
1713
- DocumentLiteralRegistry.register(
1714
- :class => Glexchange::Pdws::LanguageWorkflowInfo,
1715
- :schema_type => XSD::QName.new(NsXsd, "LanguageWorkflowInfo"),
1716
- :schema_element => [
1717
- ["sourceLanguage", "Glexchange::Pdws::Language"],
1718
- ["targetLanguage", "Glexchange::Pdws::Language"]
1719
- ]
1720
- )
1721
-
1722
- DocumentLiteralRegistry.register(
1723
- :class => Glexchange::Pdws::BatchWorkflowInfo,
1724
- :schema_type => XSD::QName.new(NsXsd, "BatchWorkflowInfo"),
1725
- :schema_element => [
1726
- ["batchName", "SOAP::SOAPString"],
1727
- ["languageWorkflowInfo", "Glexchange::Pdws::LanguageWorkflowInfo"]
1728
- ]
1729
- )
1730
-
1731
- DocumentLiteralRegistry.register(
1732
- :class => Glexchange::Pdws::TargetWorkflowInfo,
1733
- :schema_type => XSD::QName.new(NsXsd, "TargetWorkflowInfo"),
1734
- :schema_element => [
1735
- ["batchName", "SOAP::SOAPString"],
1736
- ["documentName", "SOAP::SOAPString"],
1737
- ["fileName", "SOAP::SOAPString"],
1738
- ["sourceLanguage", "Glexchange::Pdws::Language"],
1739
- ["targetLanguage", "Glexchange::Pdws::Language"],
1740
- ["targetTicket", "SOAP::SOAPString"]
1741
- ]
1742
- )
1743
-
1744
- DocumentLiteralRegistry.register(
1745
- :class => Glexchange::Pdws::SubmissionWorkflowInfo,
1746
- :schema_type => XSD::QName.new(NsXsd, "SubmissionWorkflowInfo"),
1747
- :schema_element => [
1748
- ["batchWorkflowInfos", "Glexchange::Pdws::BatchWorkflowInfo[]", [0, nil]],
1749
- ["languageWorkflowInfos", "Glexchange::Pdws::LanguageWorkflowInfo[]", [0, nil]],
1750
- ["phaseName", "SOAP::SOAPString"],
1751
- ["submissionId", "SOAP::SOAPLong"],
1752
- ["submissionName", "SOAP::SOAPString"],
1753
- ["submissionTicket", "SOAP::SOAPString"],
1754
- ["targetWorkflowInfos", "Glexchange::Pdws::TargetWorkflowInfo[]", [0, nil]]
1755
- ]
1756
- )
1757
-
1758
- DocumentLiteralRegistry.register(
1759
- :class => Glexchange::Pdws::WorkflowRequest,
1760
- :schema_type => XSD::QName.new(NsXsd, "WorkflowRequest"),
1761
- :schema_element => [
1762
- ["batchWorkflowInfos", "Glexchange::Pdws::BatchWorkflowInfo[]", [0, nil]],
1763
- ["languageWorkflowInfos", "Glexchange::Pdws::LanguageWorkflowInfo[]", [0, nil]],
1764
- ["phaseName", "SOAP::SOAPString"],
1765
- ["submissionTicket", "SOAP::SOAPString"],
1766
- ["targetWorkflowInfos", "Glexchange::Pdws::TargetWorkflowInfo[]", [0, nil]]
1767
- ]
1768
- )
1769
-
1770
- DocumentLiteralRegistry.register(
1771
- :class => Glexchange::Pdws::WorkflowRequestTicket,
1772
- :schema_type => XSD::QName.new(NsXsd, "WorkflowRequestTicket"),
1773
- :schema_element => [
1774
- ["message", "SOAP::SOAPString"],
1775
- ["processTicket", "SOAP::SOAPString"],
1776
- ["submissionTicket", "SOAP::SOAPString"]
1777
- ]
1778
- )
1779
-
1780
- DocumentLiteralRegistry.register(
1781
- :class => Glexchange::Pdws::DownloadActionResult,
1782
- :schema_type => XSD::QName.new(NsXsd, "DownloadActionResult"),
1783
- :schema_element => [
1784
- ["message", "SOAP::SOAPString"],
1785
- ["processingFinished", "SOAP::SOAPBoolean"],
1786
- ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
1787
- ]
1788
- )
1789
-
1790
- DocumentLiteralRegistry.register(
1791
- :class => Glexchange::Pdws::UploadActionResult,
1792
- :schema_type => XSD::QName.new(NsXsd, "UploadActionResult"),
1793
- :schema_element => [
1794
- ["messages", "SOAP::SOAPString[]", [0, nil]],
1795
- ["processingFinished", "SOAP::SOAPBoolean"]
1796
- ]
1797
- )
1798
-
1799
- DocumentLiteralRegistry.register(
1800
- :class => Glexchange::Pdws::DownloadCollateralResult,
1801
- :schema_type => XSD::QName.new(NsXsd, "DownloadCollateralResult"),
1802
- :schema_element => [
1803
- ["errorMessages", "SOAP::SOAPString[]", [0, nil]],
1804
- ["processingFinished", "SOAP::SOAPBoolean"],
1805
- ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
1806
- ]
1807
- )
1808
-
1809
- DocumentLiteralRegistry.register(
1810
- :class => Glexchange::Pdws::Base64Binary,
1811
- :schema_type => XSD::QName.new(NsXmlmime, "base64Binary"),
1812
- :schema_attribute => {
1813
- XSD::QName.new(NsXmlmime, "contentType") => "SOAP::SOAPString"
1814
- }
1815
- )
1816
-
1817
- DocumentLiteralRegistry.register(
1818
- :class => Glexchange::Pdws::HexBinary,
1819
- :schema_type => XSD::QName.new(NsXmlmime, "hexBinary"),
1820
- :schema_attribute => {
1821
- XSD::QName.new(NsXmlmime, "contentType") => "SOAP::SOAPString"
1822
- }
1823
- )
1824
-
1825
- DocumentLiteralRegistry.register(
1826
- :class => Glexchange::Pdws::CancelDocument,
1827
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "cancelDocument"),
1828
- :schema_element => [
1829
- ["documentTicket", "Glexchange::Pdws::DocumentTicket"]
1830
- ]
1831
- )
1832
-
1833
- DocumentLiteralRegistry.register(
1834
- :class => Glexchange::Pdws::CancelDocumentResponse,
1835
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "cancelDocumentResponse"),
1836
- :schema_element => [
1837
- ["v_return", ["SOAP::SOAPString", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1838
- ]
1839
- )
1840
-
1841
- DocumentLiteralRegistry.register(
1842
- :class => Glexchange::Pdws::FindByTicket,
1843
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "findByTicket"),
1844
- :schema_element => [
1845
- ["ticket", "SOAP::SOAPString"]
1846
- ]
1847
- )
1848
-
1849
- DocumentLiteralRegistry.register(
1850
- :class => Glexchange::Pdws::FindByTicketResponse,
1851
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "findByTicketResponse"),
1852
- :schema_element => [
1853
- ["v_return", ["Glexchange::Pdws::Document", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1854
- ]
1855
- )
1856
-
1857
- DocumentLiteralRegistry.register(
1858
- :class => Glexchange::Pdws::Search,
1859
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "search"),
1860
- :schema_element => [
1861
- ["command", "Glexchange::Pdws::DocumentSearchRequest"],
1862
- ["info", "Glexchange::Pdws::PagedListInfo"]
1863
- ]
1864
- )
1865
-
1866
- DocumentLiteralRegistry.register(
1867
- :class => Glexchange::Pdws::SearchResponse,
1868
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "searchResponse"),
1869
- :schema_element => [
1870
- ["v_return", ["Glexchange::Pdws::DocumentPagedList", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1871
- ]
1872
- )
1873
-
1874
- DocumentLiteralRegistry.register(
1875
- :class => Glexchange::Pdws::SubmitDocumentWithBinaryResource,
1876
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "submitDocumentWithBinaryResource"),
1877
- :schema_element => [
1878
- ["documentInfo", "Glexchange::Pdws::DocumentInfo"],
1879
- ["resourceInfo", "Glexchange::Pdws::ResourceInfo"],
1880
- ["data", "Glexchange::Pdws::Base64Binary"]
1881
- ]
1882
- )
1883
-
1884
- DocumentLiteralRegistry.register(
1885
- :class => Glexchange::Pdws::SubmitDocumentWithBinaryResourceResponse,
1886
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "submitDocumentWithBinaryResourceResponse"),
1887
- :schema_element => [
1888
- ["v_return", ["Glexchange::Pdws::DocumentTicket", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1889
- ]
1890
- )
1891
-
1892
- DocumentLiteralRegistry.register(
1893
- :class => Glexchange::Pdws::SubmitDocumentWithTextResource,
1894
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "submitDocumentWithTextResource"),
1895
- :schema_element => [
1896
- ["documentInfo", "Glexchange::Pdws::DocumentInfo"],
1897
- ["resourceInfo", "Glexchange::Pdws::ResourceInfo"],
1898
- ["data", "SOAP::SOAPString"]
1899
- ]
1900
- )
1901
-
1902
- DocumentLiteralRegistry.register(
1903
- :class => Glexchange::Pdws::SubmitDocumentWithTextResourceResponse,
1904
- :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "submitDocumentWithTextResourceResponse"),
1905
- :schema_element => [
1906
- ["v_return", ["Glexchange::Pdws::DocumentTicket", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1907
- ]
1908
- )
1909
- end
1910
-
1911
- end; end
1
+ require 'glexchange/pdws/DocumentService_4180.rb'
2
+ require 'soap/mapping'
3
+
4
+ module Glexchange; module Pdws
5
+
6
+ module DocumentMappingRegistry
7
+ DocumentEncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
8
+ DocumentLiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
9
+ NsImplServicesServiceWsProjectdirectorGs4trOrg = "http://impl.services.service.ws.projectdirector.gs4tr.org"
10
+ NsXmlmime = "http://www.w3.org/2005/05/xmlmime"
11
+ NsXsd = "http://dto.model.projectdirector.gs4tr.org/xsd"
12
+
13
+ DocumentEncodedRegistry.register(
14
+ :class => Glexchange::Pdws::Notification,
15
+ :schema_type => XSD::QName.new(NsXsd, "Notification"),
16
+ :schema_element => [
17
+ ["errorMessage", "SOAP::SOAPString"],
18
+ ["notificationDate", "Glexchange::Pdws::Date"],
19
+ ["notificationPriority", "Glexchange::Pdws::NotificationPriority"],
20
+ ["notificationText", "SOAP::SOAPString"]
21
+ ]
22
+ )
23
+
24
+ DocumentEncodedRegistry.register(
25
+ :class => Glexchange::Pdws::NotificationPriority,
26
+ :schema_type => XSD::QName.new(NsXsd, "NotificationPriority"),
27
+ :schema_element => [
28
+ ["notificationPriorityName", "SOAP::SOAPString"]
29
+ ]
30
+ )
31
+
32
+ DocumentEncodedRegistry.register(
33
+ :class => Glexchange::Pdws::Announcement,
34
+ :schema_type => XSD::QName.new(NsXsd, "Announcement"),
35
+ :schema_element => [
36
+ ["announcementText", "SOAP::SOAPString"],
37
+ ["date", "Glexchange::Pdws::Date"]
38
+ ]
39
+ )
40
+
41
+ DocumentEncodedRegistry.register(
42
+ :class => Glexchange::Pdws::Batch,
43
+ :schema_type => XSD::QName.new(NsXsd, "Batch"),
44
+ :schema_element => [
45
+ ["name", "SOAP::SOAPString"],
46
+ ["targetLanguages", "SOAP::SOAPString[]", [0, nil]],
47
+ ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
48
+ ]
49
+ )
50
+
51
+ DocumentEncodedRegistry.register(
52
+ :class => Glexchange::Pdws::ContentMonitorPluginInfo,
53
+ :schema_type => XSD::QName.new(NsXsd, "ContentMonitorPluginInfo"),
54
+ :schema_element => [
55
+ ["pluginId", "SOAP::SOAPString"],
56
+ ["pluginName", "SOAP::SOAPString"]
57
+ ]
58
+ )
59
+
60
+ DocumentEncodedRegistry.register(
61
+ :class => Glexchange::Pdws::Date,
62
+ :schema_type => XSD::QName.new(NsXsd, "Date"),
63
+ :schema_element => [
64
+ ["critical", "SOAP::SOAPBoolean"],
65
+ ["date", "SOAP::SOAPLong"]
66
+ ]
67
+ )
68
+
69
+ DocumentEncodedRegistry.register(
70
+ :class => Glexchange::Pdws::Document,
71
+ :schema_type => XSD::QName.new(NsXsd, "Document"),
72
+ :schema_element => [
73
+ ["documentGroup", "Glexchange::Pdws::DocumentGroup"],
74
+ ["documentInfo", "Glexchange::Pdws::DocumentInfo"],
75
+ ["id", "SOAP::SOAPString"],
76
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
77
+ ["sourceWordCount", "SOAP::SOAPInt"],
78
+ ["ticket", "SOAP::SOAPString"]
79
+ ]
80
+ )
81
+
82
+ DocumentEncodedRegistry.register(
83
+ :class => Glexchange::Pdws::DocumentGroup,
84
+ :schema_type => XSD::QName.new(NsXsd, "DocumentGroup"),
85
+ :schema_element => [
86
+ ["classifier", "SOAP::SOAPString"],
87
+ ["documents", "Glexchange::Pdws::Document[]", [0, nil]],
88
+ ["mimeType", "SOAP::SOAPString"],
89
+ ["submission", "Glexchange::Pdws::Submission"]
90
+ ]
91
+ )
92
+
93
+ DocumentEncodedRegistry.register(
94
+ :class => Glexchange::Pdws::DocumentInfo,
95
+ :schema_type => XSD::QName.new(NsXsd, "DocumentInfo"),
96
+ :schema_element => [
97
+ ["childDocumentInfos", "Glexchange::Pdws::DocumentInfo[]", [0, nil]],
98
+ ["clientIdentifier", "SOAP::SOAPString"],
99
+ ["dateRequested", "Glexchange::Pdws::Date"],
100
+ ["instructions", "SOAP::SOAPString"],
101
+ ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
102
+ ["name", "SOAP::SOAPString"],
103
+ ["projectTicket", "SOAP::SOAPString"],
104
+ ["sourceLocale", "SOAP::SOAPString"],
105
+ ["submissionTicket", "SOAP::SOAPString"],
106
+ ["targetInfos", "Glexchange::Pdws::TargetInfo[]", [0, nil]],
107
+ ["wordCount", "SOAP::SOAPInt"]
108
+ ]
109
+ )
110
+
111
+ DocumentEncodedRegistry.register(
112
+ :class => Glexchange::Pdws::DocumentPagedList,
113
+ :schema_type => XSD::QName.new(NsXsd, "DocumentPagedList"),
114
+ :schema_element => [
115
+ ["elements", "Glexchange::Pdws::Document[]", [0, nil]],
116
+ ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
117
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
118
+ ["totalCount", "SOAP::SOAPLong"]
119
+ ]
120
+ )
121
+
122
+ DocumentEncodedRegistry.register(
123
+ :class => Glexchange::Pdws::DocumentSearchRequest,
124
+ :schema_type => XSD::QName.new(NsXsd, "DocumentSearchRequest"),
125
+ :schema_element => [
126
+ ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
127
+ ["sourceLocaleId", "SOAP::SOAPString"],
128
+ ["submissionTicket", "SOAP::SOAPString"]
129
+ ]
130
+ )
131
+
132
+ DocumentEncodedRegistry.register(
133
+ :class => Glexchange::Pdws::DocumentTicket,
134
+ :schema_type => XSD::QName.new(NsXsd, "DocumentTicket"),
135
+ :schema_element => [
136
+ ["submissionTicket", "SOAP::SOAPString"],
137
+ ["ticketId", "SOAP::SOAPString"]
138
+ ]
139
+ )
140
+
141
+ DocumentEncodedRegistry.register(
142
+ :class => Glexchange::Pdws::EntityTypeEnum,
143
+ :schema_type => XSD::QName.new(NsXsd, "EntityTypeEnum"),
144
+ :schema_element => [
145
+ ["name", "SOAP::SOAPString"],
146
+ ["value", "SOAP::SOAPInt"]
147
+ ]
148
+ )
149
+
150
+ DocumentEncodedRegistry.register(
151
+ :class => Glexchange::Pdws::FileFormatProfile,
152
+ :schema_type => XSD::QName.new(NsXsd, "FileFormatProfile"),
153
+ :schema_element => [
154
+ ["configurable", "SOAP::SOAPBoolean"],
155
+ ["isDefault", "SOAP::SOAPBoolean"],
156
+ ["mimeType", "SOAP::SOAPString"],
157
+ ["pluginId", "SOAP::SOAPString"],
158
+ ["pluginName", "SOAP::SOAPString"],
159
+ ["profileName", "SOAP::SOAPString"],
160
+ ["targetWorkflowDefinition", "Glexchange::Pdws::WorkflowDefinition"],
161
+ ["ticket", "SOAP::SOAPString"]
162
+ ]
163
+ )
164
+
165
+ DocumentEncodedRegistry.register(
166
+ :class => Glexchange::Pdws::FileFormatProgressData,
167
+ :schema_type => XSD::QName.new(NsXsd, "FileFormatProgressData"),
168
+ :schema_element => [
169
+ ["dateCompleted", "Glexchange::Pdws::Date"],
170
+ ["fileCount", "SOAP::SOAPLong"],
171
+ ["fileFormatName", "SOAP::SOAPString"],
172
+ ["fileProgressData", "Glexchange::Pdws::FileProgressData"],
173
+ ["jobTicket", "SOAP::SOAPString"],
174
+ ["workflowDueDate", "Glexchange::Pdws::Date"],
175
+ ["workflowStatus", "SOAP::SOAPString"]
176
+ ]
177
+ )
178
+
179
+ DocumentEncodedRegistry.register(
180
+ :class => Glexchange::Pdws::FileProgressData,
181
+ :schema_type => XSD::QName.new(NsXsd, "FileProgressData"),
182
+ :schema_element => [
183
+ ["numberOfAvailableFiles", "SOAP::SOAPInt"],
184
+ ["numberOfCanceledFiles", "SOAP::SOAPInt"],
185
+ ["numberOfCompletedFiles", "SOAP::SOAPInt"],
186
+ ["numberOfDeliveredFiles", "SOAP::SOAPInt"],
187
+ ["numberOfFailedFiles", "SOAP::SOAPInt"],
188
+ ["numberOfInProcessFiles", "SOAP::SOAPInt"],
189
+ ["overallProgressPercent", "SOAP::SOAPInt"]
190
+ ]
191
+ )
192
+
193
+ DocumentEncodedRegistry.register(
194
+ :class => Glexchange::Pdws::FuzzyTmStatistics,
195
+ :schema_type => XSD::QName.new(NsXsd, "FuzzyTmStatistics"),
196
+ :schema_element => [
197
+ ["fuzzyName", "SOAP::SOAPString"],
198
+ ["wordCount", "SOAP::SOAPInt"]
199
+ ]
200
+ )
201
+
202
+ DocumentEncodedRegistry.register(
203
+ :class => Glexchange::Pdws::ItemFolderEnum,
204
+ :schema_type => XSD::QName.new(NsXsd, "ItemFolderEnum"),
205
+ :schema_element => [
206
+ ["value", "SOAP::SOAPInt"]
207
+ ]
208
+ )
209
+
210
+ DocumentEncodedRegistry.register(
211
+ :class => Glexchange::Pdws::ItemStatusEnum,
212
+ :schema_type => XSD::QName.new(NsXsd, "ItemStatusEnum"),
213
+ :schema_element => [
214
+ ["name", "SOAP::SOAPString"],
215
+ ["value", "SOAP::SOAPInt"]
216
+ ]
217
+ )
218
+
219
+ DocumentEncodedRegistry.register(
220
+ :class => Glexchange::Pdws::Metadata,
221
+ :schema_type => XSD::QName.new(NsXsd, "Metadata"),
222
+ :schema_element => [
223
+ ["key", "SOAP::SOAPString"],
224
+ ["value", "SOAP::SOAPString"]
225
+ ]
226
+ )
227
+
228
+ DocumentEncodedRegistry.register(
229
+ :class => Glexchange::Pdws::Language,
230
+ :schema_type => XSD::QName.new(NsXsd, "Language"),
231
+ :schema_element => [
232
+ ["locale", "SOAP::SOAPString"],
233
+ ["value", "SOAP::SOAPString"]
234
+ ]
235
+ )
236
+
237
+ DocumentEncodedRegistry.register(
238
+ :class => Glexchange::Pdws::LanguageDirection,
239
+ :schema_type => XSD::QName.new(NsXsd, "LanguageDirection"),
240
+ :schema_element => [
241
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
242
+ ["targetLanguage", "Glexchange::Pdws::Language"]
243
+ ]
244
+ )
245
+
246
+ DocumentEncodedRegistry.register(
247
+ :class => Glexchange::Pdws::LanguageDirectionModel,
248
+ :schema_type => XSD::QName.new(NsXsd, "LanguageDirectionModel"),
249
+ :schema_element => [
250
+ ["dateCompleted", "Glexchange::Pdws::Date"],
251
+ ["fileCount", "SOAP::SOAPLong"],
252
+ ["fileFormatProgressData", "Glexchange::Pdws::FileFormatProgressData[]", [0, nil]],
253
+ ["fileProgress", "Glexchange::Pdws::FileProgressData"],
254
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
255
+ ["targetLanguage", "Glexchange::Pdws::Language"],
256
+ ["workflowDueDate", "Glexchange::Pdws::Date"],
257
+ ["workflowStatus", "SOAP::SOAPString"]
258
+ ]
259
+ )
260
+
261
+ DocumentEncodedRegistry.register(
262
+ :class => Glexchange::Pdws::LanguagePhaseInfo,
263
+ :schema_type => XSD::QName.new(NsXsd, "LanguagePhaseInfo"),
264
+ :schema_element => [
265
+ ["phaseStartDate", "Glexchange::Pdws::Date"],
266
+ ["sourceFileList", "SOAP::SOAPString[]", [0, nil]],
267
+ ["tmStatistics", "Glexchange::Pdws::TmStatistics"]
268
+ ]
269
+ )
270
+
271
+ DocumentEncodedRegistry.register(
272
+ :class => Glexchange::Pdws::Organization,
273
+ :schema_type => XSD::QName.new(NsXsd, "Organization"),
274
+ :schema_element => [
275
+ ["availableTasks", "SOAP::SOAPInteger"],
276
+ ["parentOrganization", "Glexchange::Pdws::Organization"],
277
+ ["organizationInfo", "Glexchange::Pdws::OrganizationInfo"],
278
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
279
+ ["ticket", "SOAP::SOAPString"]
280
+ ]
281
+ )
282
+
283
+ DocumentEncodedRegistry.register(
284
+ :class => Glexchange::Pdws::OrganizationInfo,
285
+ :schema_type => XSD::QName.new(NsXsd, "OrganizationInfo"),
286
+ :schema_element => [
287
+ ["name", "SOAP::SOAPString"],
288
+ ["ticket", "SOAP::SOAPString"],
289
+ ["currencyCode", "SOAP::SOAPString"],
290
+ ["domain", "SOAP::SOAPString"],
291
+ ["theme", "SOAP::SOAPString"],
292
+ ["enabled", "SOAP::SOAPBoolean"]
293
+ ]
294
+ )
295
+
296
+ DocumentEncodedRegistry.register(
297
+ :class => Glexchange::Pdws::PagedListInfo,
298
+ :schema_type => XSD::QName.new(NsXsd, "PagedListInfo"),
299
+ :schema_element => [
300
+ ["index", "SOAP::SOAPInt"],
301
+ ["indexesSize", "SOAP::SOAPInt"],
302
+ ["size", "SOAP::SOAPInt"],
303
+ ["sortDirection", "SOAP::SOAPString"],
304
+ ["sortProperty", "SOAP::SOAPString"]
305
+ ]
306
+ )
307
+
308
+ DocumentEncodedRegistry.register(
309
+ :class => Glexchange::Pdws::Phase,
310
+ :schema_type => XSD::QName.new(NsXsd, "Phase"),
311
+ :schema_element => [
312
+ ["dateEnded", "Glexchange::Pdws::Date"],
313
+ ["dueDate", "Glexchange::Pdws::Date"],
314
+ ["name", "SOAP::SOAPString"],
315
+ ["status", "Glexchange::Pdws::ItemStatusEnum"]
316
+ ]
317
+ )
318
+
319
+ DocumentEncodedRegistry.register(
320
+ :class => Glexchange::Pdws::PreviewResult,
321
+ :schema_type => XSD::QName.new(NsXsd, "PreviewResult"),
322
+ :schema_element => [
323
+ ["message", "SOAP::SOAPString"],
324
+ ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
325
+ ]
326
+ )
327
+
328
+ DocumentEncodedRegistry.register(
329
+ :class => Glexchange::Pdws::Priority,
330
+ :schema_type => XSD::QName.new(NsXsd, "Priority"),
331
+ :schema_element => [
332
+ ["name", "SOAP::SOAPString"],
333
+ ["value", "SOAP::SOAPInt"]
334
+ ]
335
+ )
336
+
337
+ DocumentEncodedRegistry.register(
338
+ :class => Glexchange::Pdws::Project,
339
+ :schema_type => XSD::QName.new(NsXsd, "Project"),
340
+ :schema_element => [
341
+ ["announcements", "Glexchange::Pdws::Announcement[]", [0, nil]],
342
+ ["contentMonitorPluginInfo", "Glexchange::Pdws::ContentMonitorPluginInfo"],
343
+ ["defaultTargetWorkflowDefinition", "Glexchange::Pdws::WorkflowDefinition"],
344
+ ["defaultTargetWorkflowDefinitionTicket", "SOAP::SOAPString"],
345
+ ["fileFormatProfiles", "Glexchange::Pdws::FileFormatProfile[]", [0, nil]],
346
+ ["includeSubmissionNameInLocalizationKit", "SOAP::SOAPBoolean[]", [0, nil]],
347
+ ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
348
+ ["organizationName", "SOAP::SOAPString"],
349
+ ["projectCustomFieldConfiguration", "Glexchange::Pdws::ProjectCustomFieldConfiguration[]", [0, nil]],
350
+ ["projectInfo", "Glexchange::Pdws::ProjectInfo"],
351
+ ["projectLanguageDirections", "Glexchange::Pdws::ProjectLanguageDirection[]", [0, nil]],
352
+ ["ticket", "SOAP::SOAPString"],
353
+ ["workflowDefinitions", "Glexchange::Pdws::WorkflowDefinition[]", [0, nil]]
354
+ ]
355
+ )
356
+
357
+ DocumentEncodedRegistry.register(
358
+ :class => Glexchange::Pdws::ProjectInfo,
359
+ :schema_type => XSD::QName.new(NsXsd, "ProjectInfo"),
360
+ :schema_element => [
361
+ ["clientIdentifier", "SOAP::SOAPString"],
362
+ ["defaultJobWorkflowDefinitionTicket", "SOAP::SOAPString"],
363
+ ["defaultSubmissionWorkflowDefinitionTicket", "SOAP::SOAPString"],
364
+ ["defaultTargetWorkflowDefinitionTicket", "SOAP::SOAPString"],
365
+ ["enabled", "SOAP::SOAPBoolean"],
366
+ ["name", "SOAP::SOAPString"],
367
+ ["shortCode", "SOAP::SOAPString"]
368
+ ]
369
+ )
370
+
371
+ DocumentEncodedRegistry.register(
372
+ :class => Glexchange::Pdws::ProjectLanguage,
373
+ :schema_type => XSD::QName.new(NsXsd, "ProjectLanguage"),
374
+ :schema_element => [
375
+ ["customLocaleCode", "SOAP::SOAPString"],
376
+ ["localeCode", "SOAP::SOAPString"]
377
+ ]
378
+ )
379
+
380
+ DocumentEncodedRegistry.register(
381
+ :class => Glexchange::Pdws::ProjectLanguageDirection,
382
+ :schema_type => XSD::QName.new(NsXsd, "ProjectLanguageDirection"),
383
+ :schema_element => [
384
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
385
+ ["targetLanguage", "Glexchange::Pdws::Language"],
386
+ ["default", "SOAP::SOAPBoolean"],
387
+ ["frequent", "SOAP::SOAPBoolean"]
388
+ ]
389
+ )
390
+
391
+ DocumentEncodedRegistry.register(
392
+ :class => Glexchange::Pdws::ProjectAClient,
393
+ :schema_type => XSD::QName.new(NsXsd, "ProjectAClient"),
394
+ :schema_element => [
395
+ ["enabled", "SOAP::SOAPBoolean"],
396
+ ["name", "SOAP::SOAPString"],
397
+ ["parentOrganization", "Glexchange::Pdws::Organization"],
398
+ ["ticket", "SOAP::SOAPString"]
399
+ ]
400
+ )
401
+
402
+ DocumentEncodedRegistry.register(
403
+ :class => Glexchange::Pdws::RepositoryItem,
404
+ :schema_type => XSD::QName.new(NsXsd, "RepositoryItem"),
405
+ :schema_element => [
406
+ ["data", "Glexchange::Pdws::Base64Binary"],
407
+ ["resourceInfo", "Glexchange::Pdws::ResourceInfo"]
408
+ ]
409
+ )
410
+
411
+ DocumentEncodedRegistry.register(
412
+ :class => Glexchange::Pdws::ResourceInfo,
413
+ :schema_type => XSD::QName.new(NsXsd, "ResourceInfo"),
414
+ :schema_element => [
415
+ ["classifier", "SOAP::SOAPString"],
416
+ ["clientIdentifier", "SOAP::SOAPString"],
417
+ ["description", "SOAP::SOAPString"],
418
+ ["encoding", "SOAP::SOAPString"],
419
+ ["md5Checksum", "SOAP::SOAPString"],
420
+ ["mimeType", "SOAP::SOAPString"],
421
+ ["name", "SOAP::SOAPString"],
422
+ ["path", "SOAP::SOAPString"],
423
+ ["resourceInfoId", "SOAP::SOAPLong"],
424
+ ["size", "SOAP::SOAPLong"],
425
+ ["type", "Glexchange::Pdws::ResourceType"]
426
+ ]
427
+ )
428
+
429
+ DocumentEncodedRegistry.register(
430
+ :class => Glexchange::Pdws::ResourceType,
431
+ :schema_type => XSD::QName.new(NsXsd, "ResourceType"),
432
+ :schema_element => [
433
+ ["value", "SOAP::SOAPInt"]
434
+ ]
435
+ )
436
+
437
+ DocumentEncodedRegistry.register(
438
+ :class => Glexchange::Pdws::Submission,
439
+ :schema_type => XSD::QName.new(NsXsd, "Submission"),
440
+ :schema_element => [
441
+ ["alerts", "Glexchange::Pdws::Notification[]", [0, nil]],
442
+ ["availableTasks", "SOAP::SOAPInt"],
443
+ ["batches", "Glexchange::Pdws::Batch[]", [0, nil]],
444
+ ["dateArchived", "Glexchange::Pdws::Date"],
445
+ ["dateCompleted", "Glexchange::Pdws::Date"],
446
+ ["dateCreated", "Glexchange::Pdws::Date"],
447
+ ["dateEstimated", "Glexchange::Pdws::Date"],
448
+ ["documents", "Glexchange::Pdws::Document[]", [0, nil]],
449
+ ["dueDate", "Glexchange::Pdws::Date"],
450
+ ["id", "SOAP::SOAPString"],
451
+ ["owner", "SOAP::SOAPString"],
452
+ ["project", "Glexchange::Pdws::Project"],
453
+ ["status", "Glexchange::Pdws::ItemStatusEnum"],
454
+ ["submissionId", "SOAP::SOAPLong"],
455
+ ["submissionInfo", "Glexchange::Pdws::SubmissionInfo"],
456
+ ["submitterFullNames", "SOAP::SOAPString[]", [0, nil]],
457
+ ["ticket", "SOAP::SOAPString"],
458
+ ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
459
+ ]
460
+ )
461
+
462
+ DocumentEncodedRegistry.register(
463
+ :class => Glexchange::Pdws::SubmissionInfo,
464
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionInfo"),
465
+ :schema_element => [
466
+ ["additionalCosts", "SOAP::SOAPString"],
467
+ ["autoStartChilds", "SOAP::SOAPBoolean"],
468
+ ["claimScope", "Glexchange::Pdws::ClaimScopeEnum"],
469
+ ["clientIdentifier", "SOAP::SOAPString"],
470
+ ["dateRequested", "Glexchange::Pdws::Date"],
471
+ ["internalNotes", "SOAP::SOAPString"],
472
+ ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
473
+ ["name", "SOAP::SOAPString"],
474
+ ["officeName", "SOAP::SOAPString"],
475
+ ["paClientTicket", "SOAP::SOAPString"],
476
+ ["paJobNumber", "SOAP::SOAPString"],
477
+ ["priority", "Glexchange::Pdws::Priority"],
478
+ ["projectTicket", "SOAP::SOAPString"],
479
+ ["revenue", "SOAP::SOAPDouble"],
480
+ ["submissionBackground", "SOAP::SOAPString"],
481
+ ["submissionCustomFields", "Glexchange::Pdws::SubmissionCustomFields[]", [0, nil]],
482
+ ["submitters", "SOAP::SOAPString[]", [0, nil]],
483
+ ["workflowDefinitionTicket", "SOAP::SOAPString"]
484
+ ]
485
+ )
486
+
487
+ DocumentEncodedRegistry.register(
488
+ :class => Glexchange::Pdws::SubmissionPagedList,
489
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionPagedList"),
490
+ :schema_element => [
491
+ ["elements", "Glexchange::Pdws::Submission[]", [0, nil]],
492
+ ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
493
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
494
+ ["totalCount", "SOAP::SOAPLong"]
495
+ ]
496
+ )
497
+
498
+ DocumentEncodedRegistry.register(
499
+ :class => Glexchange::Pdws::SimpleSubmissionSearchModel,
500
+ :schema_type => XSD::QName.new(NsXsd, "SimpleSubmissionSearchModel"),
501
+ :schema_element => [
502
+ ["alerts", "Glexchange::Pdws::Notification[]", [0, nil]],
503
+ ["availableTasks", "SOAP::SOAPLong"],
504
+ ["budgetStatus", "SOAP::SOAPInt"],
505
+ ["claimScope", "Glexchange::Pdws::ClaimScopeEnum"],
506
+ ["customFields", "SOAP::SOAPString[]", [0, nil]],
507
+ ["date", "Glexchange::Pdws::Date"],
508
+ ["dateArchived", "Glexchange::Pdws::Date"],
509
+ ["dateCompleted", "Glexchange::Pdws::Date"],
510
+ ["dateStarted", "Glexchange::Pdws::Date"],
511
+ ["dueDate", "Glexchange::Pdws::Date"],
512
+ ["fileCount", "SOAP::SOAPLong"],
513
+ ["fileProgress", "Glexchange::Pdws::FileProgressData"],
514
+ ["gate", "SOAP::SOAPByte"],
515
+ ["id", "SOAP::SOAPString"],
516
+ ["instructions", "SOAP::SOAPString"],
517
+ ["officeName", "SOAP::SOAPString"],
518
+ ["owner", "Glexchange::Pdws::UserData[]", [0, nil]],
519
+ ["paClientName", "SOAP::SOAPString"],
520
+ ["parentSubmissionName", "SOAP::SOAPString"],
521
+ ["parentTicket", "SOAP::SOAPString"],
522
+ ["pmNotes", "SOAP::SOAPString"],
523
+ ["priority", "SOAP::SOAPString"],
524
+ ["projectName", "SOAP::SOAPString"],
525
+ ["projectTicket", "SOAP::SOAPString"],
526
+ ["quote", "SOAP::SOAPByte"],
527
+ ["reserved", "SOAP::SOAPBoolean"],
528
+ ["sourceLanguage", "SOAP::SOAPString"],
529
+ ["status", "Glexchange::Pdws::ItemStatusEnum"],
530
+ ["submissionBackground", "SOAP::SOAPString"],
531
+ ["submissionName", "SOAP::SOAPString"],
532
+ ["submitterFullName", "Glexchange::Pdws::UserData[]", [0, nil]],
533
+ ["ticket", "SOAP::SOAPString"],
534
+ ["wordCount", "SOAP::SOAPLong"],
535
+ ["workflowDueDate", "Glexchange::Pdws::Date"],
536
+ ["workflowStatus", "SOAP::SOAPString"]
537
+ ]
538
+ )
539
+
540
+ DocumentEncodedRegistry.register(
541
+ :class => Glexchange::Pdws::SubmissionSearchModelPagedList,
542
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionSearchModelPagedList"),
543
+ :schema_element => [
544
+ ["elements", "Glexchange::Pdws::SimpleSubmissionSearchModel[]", [0, nil]],
545
+ ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
546
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
547
+ ["totalCount", "SOAP::SOAPLong"]
548
+ ]
549
+ )
550
+
551
+ DocumentEncodedRegistry.register(
552
+ :class => Glexchange::Pdws::SubmissionSearchRequest,
553
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionSearchRequest"),
554
+ :schema_element => [
555
+ ["folder", "Glexchange::Pdws::ItemFolderEnum"],
556
+ ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
557
+ ["submissionDate", "Glexchange::Pdws::Date"],
558
+ ["submissionDueDate", "Glexchange::Pdws::Date"],
559
+ ["submissionName", "SOAP::SOAPString"]
560
+ ]
561
+ )
562
+
563
+ DocumentEncodedRegistry.register(
564
+ :class => Glexchange::Pdws::Target,
565
+ :schema_type => XSD::QName.new(NsXsd, "Target"),
566
+ :schema_element => [
567
+ ["availableTasks", "SOAP::SOAPLong"],
568
+ ["dateCompleted", "Glexchange::Pdws::Date"],
569
+ ["dateCreated", "Glexchange::Pdws::Date"],
570
+ ["dateEstimated", "Glexchange::Pdws::Date"],
571
+ ["document", "Glexchange::Pdws::Document"],
572
+ ["downloadThresholdTimeStamp", "Glexchange::Pdws::Date"],
573
+ ["dueDate", "Glexchange::Pdws::Date"],
574
+ ["fileName", "SOAP::SOAPString"],
575
+ ["id", "SOAP::SOAPString"],
576
+ ["phases", "Glexchange::Pdws::Phase[]", [0, nil]],
577
+ ["refPhase", "Glexchange::Pdws::Phase"],
578
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
579
+ ["sourceWordCount", "SOAP::SOAPInt"],
580
+ ["status", "Glexchange::Pdws::ItemStatusEnum"],
581
+ ["targetInfo", "Glexchange::Pdws::TargetInfo"],
582
+ ["targetLanguage", "Glexchange::Pdws::Language"],
583
+ ["targetWordCount", "SOAP::SOAPInt"],
584
+ ["ticket", "SOAP::SOAPString"],
585
+ ["tmStatistics", "Glexchange::Pdws::TmStatistics"],
586
+ ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
587
+ ]
588
+ )
589
+
590
+ DocumentEncodedRegistry.register(
591
+ :class => Glexchange::Pdws::TargetInfo,
592
+ :schema_type => XSD::QName.new(NsXsd, "TargetInfo"),
593
+ :schema_element => [
594
+ ["dateRequested", "Glexchange::Pdws::Date"],
595
+ ["encoding", "SOAP::SOAPString"],
596
+ ["instructions", "SOAP::SOAPString"],
597
+ ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
598
+ ["priority", "Glexchange::Pdws::Priority"],
599
+ ["requestedDueDate", "SOAP::SOAPLong"],
600
+ ["targetLocale", "SOAP::SOAPString"],
601
+ ["workflowDefinitionTicket", "SOAP::SOAPString"]
602
+ ]
603
+ )
604
+
605
+ DocumentEncodedRegistry.register(
606
+ :class => Glexchange::Pdws::TargetPagedList,
607
+ :schema_type => XSD::QName.new(NsXsd, "TargetPagedList"),
608
+ :schema_element => [
609
+ ["elements", "Glexchange::Pdws::Target[]", [0, nil]],
610
+ ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
611
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
612
+ ["totalCount", "SOAP::SOAPLong"]
613
+ ]
614
+ )
615
+
616
+ DocumentEncodedRegistry.register(
617
+ :class => Glexchange::Pdws::TargetSearchRequest,
618
+ :schema_type => XSD::QName.new(NsXsd, "TargetSearchRequest"),
619
+ :schema_element => [
620
+ ["dateCreated", "Glexchange::Pdws::Date"],
621
+ ["folder", "Glexchange::Pdws::ItemFolderEnum"],
622
+ ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
623
+ ["sourceLocaleId", "SOAP::SOAPString"],
624
+ ["submissionTicket", "SOAP::SOAPString"],
625
+ ["targetLocaleId", "SOAP::SOAPString"]
626
+ ]
627
+ )
628
+
629
+ DocumentEncodedRegistry.register(
630
+ :class => Glexchange::Pdws::Task,
631
+ :schema_type => XSD::QName.new(NsXsd, "Task"),
632
+ :schema_element => [
633
+ ["groupName", "SOAP::SOAPString"],
634
+ ["selectStyle", "SOAP::SOAPInt"],
635
+ ["taskId", "SOAP::SOAPInt"],
636
+ ["taskName", "SOAP::SOAPString"],
637
+ ["weight", "SOAP::SOAPInt"]
638
+ ]
639
+ )
640
+
641
+ DocumentEncodedRegistry.register(
642
+ :class => Glexchange::Pdws::TmStatistics,
643
+ :schema_type => XSD::QName.new(NsXsd, "TmStatistics"),
644
+ :schema_element => [
645
+ ["fuzzyRepetitionsWordCount1", "Glexchange::Pdws::FuzzyTmStatistics"],
646
+ ["fuzzyRepetitionsWordCount10", "Glexchange::Pdws::FuzzyTmStatistics"],
647
+ ["fuzzyRepetitionsWordCount2", "Glexchange::Pdws::FuzzyTmStatistics"],
648
+ ["fuzzyRepetitionsWordCount3", "Glexchange::Pdws::FuzzyTmStatistics"],
649
+ ["fuzzyRepetitionsWordCount4", "Glexchange::Pdws::FuzzyTmStatistics"],
650
+ ["fuzzyRepetitionsWordCount5", "Glexchange::Pdws::FuzzyTmStatistics"],
651
+ ["fuzzyRepetitionsWordCount6", "Glexchange::Pdws::FuzzyTmStatistics"],
652
+ ["fuzzyRepetitionsWordCount7", "Glexchange::Pdws::FuzzyTmStatistics"],
653
+ ["fuzzyRepetitionsWordCount8", "Glexchange::Pdws::FuzzyTmStatistics"],
654
+ ["fuzzyRepetitionsWordCount9", "Glexchange::Pdws::FuzzyTmStatistics"],
655
+ ["fuzzyWordCount1", "Glexchange::Pdws::FuzzyTmStatistics"],
656
+ ["fuzzyWordCount10", "Glexchange::Pdws::FuzzyTmStatistics"],
657
+ ["fuzzyWordCount2", "Glexchange::Pdws::FuzzyTmStatistics"],
658
+ ["fuzzyWordCount3", "Glexchange::Pdws::FuzzyTmStatistics"],
659
+ ["fuzzyWordCount4", "Glexchange::Pdws::FuzzyTmStatistics"],
660
+ ["fuzzyWordCount5", "Glexchange::Pdws::FuzzyTmStatistics"],
661
+ ["fuzzyWordCount6", "Glexchange::Pdws::FuzzyTmStatistics"],
662
+ ["fuzzyWordCount7", "Glexchange::Pdws::FuzzyTmStatistics"],
663
+ ["fuzzyWordCount8", "Glexchange::Pdws::FuzzyTmStatistics"],
664
+ ["fuzzyWordCount9", "Glexchange::Pdws::FuzzyTmStatistics"],
665
+ ["inContextMatchWordCount", "SOAP::SOAPInt"],
666
+ ["noMatchWordCount", "SOAP::SOAPInt"],
667
+ ["oneHundredMatchWordCount", "SOAP::SOAPInt"],
668
+ ["repetitionWordCount", "SOAP::SOAPInt"],
669
+ ["totalWordCount", "SOAP::SOAPInt"]
670
+ ]
671
+ )
672
+
673
+ DocumentEncodedRegistry.register(
674
+ :class => Glexchange::Pdws::WorkflowDefinition,
675
+ :schema_type => XSD::QName.new(NsXsd, "WorkflowDefinition"),
676
+ :schema_element => [
677
+ ["description", "SOAP::SOAPString"],
678
+ ["name", "SOAP::SOAPString"],
679
+ ["ticket", "SOAP::SOAPString"],
680
+ ["type", "Glexchange::Pdws::EntityTypeEnum"]
681
+ ]
682
+ )
683
+
684
+ DocumentEncodedRegistry.register(
685
+ :class => Glexchange::Pdws::UserData,
686
+ :schema_type => XSD::QName.new(NsXsd, "UserData"),
687
+ :schema_element => [
688
+ ["email", "SOAP::SOAPString"],
689
+ ["name", "SOAP::SOAPString"]
690
+ ]
691
+ )
692
+
693
+ DocumentEncodedRegistry.register(
694
+ :class => Glexchange::Pdws::UserInfo,
695
+ :schema_type => XSD::QName.new(NsXsd, "UserInfo"),
696
+ :schema_element => [
697
+ ["accountLocked", "SOAP::SOAPBoolean"],
698
+ ["accountNonExpired", "SOAP::SOAPBoolean"],
699
+ ["address", "SOAP::SOAPString"],
700
+ ["autoClaimMultipleTasks", "SOAP::SOAPBoolean"],
701
+ ["claimMultipleJobTasks", "SOAP::SOAPBoolean"],
702
+ ["credentialsNonExpired", "SOAP::SOAPBoolean"],
703
+ ["dateLastLogin", "Glexchange::Pdws::Date"],
704
+ ["department", "SOAP::SOAPString"],
705
+ ["emailAddress", "SOAP::SOAPString"],
706
+ ["emailNotification", "SOAP::SOAPBoolean"],
707
+ ["enabled", "SOAP::SOAPBoolean"],
708
+ ["fax", "SOAP::SOAPString"],
709
+ ["firstName", "SOAP::SOAPString"],
710
+ ["lastName", "SOAP::SOAPString"],
711
+ ["password", "SOAP::SOAPString"],
712
+ ["phone1", "SOAP::SOAPString"],
713
+ ["phone2", "SOAP::SOAPString"],
714
+ ["timeZone", "SOAP::SOAPString"],
715
+ ["userName", "SOAP::SOAPString"],
716
+ ["userType", "SOAP::SOAPString"]
717
+ ]
718
+ )
719
+
720
+ DocumentEncodedRegistry.register(
721
+ :class => Glexchange::Pdws::TiUserInfo,
722
+ :schema_type => XSD::QName.new(NsXsd, "TiUserInfo"),
723
+ :schema_element => [
724
+ ["languageDirections", "Glexchange::Pdws::LanguageDirection[]", [0, nil]],
725
+ ["organizationId", "SOAP::SOAPLong"],
726
+ ["projectRoles", "SOAP::SOAPString[]", [0, nil]],
727
+ ["projectTicket", "SOAP::SOAPString[]", [0, nil]],
728
+ ["systemRoles", "SOAP::SOAPString[]", [0, nil]],
729
+ ["vendorId", "SOAP::SOAPLong"]
730
+ ]
731
+ )
732
+
733
+ DocumentEncodedRegistry.register(
734
+ :class => Glexchange::Pdws::ClaimScopeEnum,
735
+ :schema_type => XSD::QName.new(NsXsd, "ClaimScopeEnum"),
736
+ :schema_element => [
737
+ ["name", "SOAP::SOAPString"],
738
+ ["value", "SOAP::SOAPInt"]
739
+ ]
740
+ )
741
+
742
+ DocumentEncodedRegistry.register(
743
+ :class => Glexchange::Pdws::ProjectCustomFieldConfiguration,
744
+ :schema_type => XSD::QName.new(NsXsd, "ProjectCustomFieldConfiguration"),
745
+ :schema_element => [
746
+ ["description", "SOAP::SOAPString"],
747
+ ["mandatory", "SOAP::SOAPBoolean"],
748
+ ["name", "SOAP::SOAPString"],
749
+ ["type", "SOAP::SOAPString"],
750
+ ["values", "SOAP::SOAPString"]
751
+ ]
752
+ )
753
+
754
+ DocumentEncodedRegistry.register(
755
+ :class => Glexchange::Pdws::SubmissionCustomFields,
756
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionCustomFields"),
757
+ :schema_element => [
758
+ ["fieldName", "SOAP::SOAPString"],
759
+ ["fieldValue", "SOAP::SOAPString"]
760
+ ]
761
+ )
762
+
763
+ DocumentEncodedRegistry.register(
764
+ :class => Glexchange::Pdws::UserProfile,
765
+ :schema_type => XSD::QName.new(NsXsd, "UserProfile"),
766
+ :schema_element => [
767
+ ["availableTasks", "SOAP::SOAPInt"],
768
+ ["organizationName", "SOAP::SOAPString"],
769
+ ["systemRoles", "Glexchange::Pdws::Role[]", [0, nil]],
770
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
771
+ ["ticket", "SOAP::SOAPString"],
772
+ ["userInfo", "Glexchange::Pdws::UserInfo"],
773
+ ["vendorName", "SOAP::SOAPString"]
774
+ ]
775
+ )
776
+
777
+ DocumentEncodedRegistry.register(
778
+ :class => Glexchange::Pdws::Role,
779
+ :schema_type => XSD::QName.new(NsXsd, "Role"),
780
+ :schema_element => [
781
+ ["policies", "Glexchange::Pdws::Policy[]", [0, nil]],
782
+ ["roleId", "SOAP::SOAPString"],
783
+ ["roleType", "Glexchange::Pdws::RoleTypeEnum"],
784
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
785
+ ["ticket", "SOAP::SOAPString"]
786
+ ]
787
+ )
788
+
789
+ DocumentEncodedRegistry.register(
790
+ :class => Glexchange::Pdws::RoleTypeEnum,
791
+ :schema_type => XSD::QName.new(NsXsd, "RoleTypeEnum"),
792
+ :schema_element => [
793
+ ["value", "SOAP::SOAPInt"]
794
+ ]
795
+ )
796
+
797
+ DocumentEncodedRegistry.register(
798
+ :class => Glexchange::Pdws::Policy,
799
+ :schema_type => XSD::QName.new(NsXsd, "Policy"),
800
+ :schema_element => [
801
+ ["category", "SOAP::SOAPString"],
802
+ ["policyId", "SOAP::SOAPString"],
803
+ ["policyType", "Glexchange::Pdws::RoleTypeEnum"]
804
+ ]
805
+ )
806
+
807
+ DocumentEncodedRegistry.register(
808
+ :class => Glexchange::Pdws::LanguageWorkflowInfo,
809
+ :schema_type => XSD::QName.new(NsXsd, "LanguageWorkflowInfo"),
810
+ :schema_element => [
811
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
812
+ ["targetLanguage", "Glexchange::Pdws::Language"]
813
+ ]
814
+ )
815
+
816
+ DocumentEncodedRegistry.register(
817
+ :class => Glexchange::Pdws::BatchWorkflowInfo,
818
+ :schema_type => XSD::QName.new(NsXsd, "BatchWorkflowInfo"),
819
+ :schema_element => [
820
+ ["batchName", "SOAP::SOAPString"],
821
+ ["languageWorkflowInfo", "Glexchange::Pdws::LanguageWorkflowInfo"]
822
+ ]
823
+ )
824
+
825
+ DocumentEncodedRegistry.register(
826
+ :class => Glexchange::Pdws::TargetWorkflowInfo,
827
+ :schema_type => XSD::QName.new(NsXsd, "TargetWorkflowInfo"),
828
+ :schema_element => [
829
+ ["batchName", "SOAP::SOAPString"],
830
+ ["documentName", "SOAP::SOAPString"],
831
+ ["fileName", "SOAP::SOAPString"],
832
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
833
+ ["targetLanguage", "Glexchange::Pdws::Language"],
834
+ ["targetTicket", "SOAP::SOAPString"]
835
+ ]
836
+ )
837
+
838
+ DocumentEncodedRegistry.register(
839
+ :class => Glexchange::Pdws::SubmissionWorkflowInfo,
840
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionWorkflowInfo"),
841
+ :schema_element => [
842
+ ["batchWorkflowInfos", "Glexchange::Pdws::BatchWorkflowInfo[]", [0, nil]],
843
+ ["languageWorkflowInfos", "Glexchange::Pdws::LanguageWorkflowInfo[]", [0, nil]],
844
+ ["phaseName", "SOAP::SOAPString"],
845
+ ["submissionId", "SOAP::SOAPLong"],
846
+ ["submissionName", "SOAP::SOAPString"],
847
+ ["submissionTicket", "SOAP::SOAPString"],
848
+ ["targetWorkflowInfos", "Glexchange::Pdws::TargetWorkflowInfo[]", [0, nil]]
849
+ ]
850
+ )
851
+
852
+ DocumentEncodedRegistry.register(
853
+ :class => Glexchange::Pdws::WorkflowRequest,
854
+ :schema_type => XSD::QName.new(NsXsd, "WorkflowRequest"),
855
+ :schema_element => [
856
+ ["batchWorkflowInfos", "Glexchange::Pdws::BatchWorkflowInfo[]", [0, nil]],
857
+ ["languageWorkflowInfos", "Glexchange::Pdws::LanguageWorkflowInfo[]", [0, nil]],
858
+ ["phaseName", "SOAP::SOAPString"],
859
+ ["submissionTicket", "SOAP::SOAPString"],
860
+ ["targetWorkflowInfos", "Glexchange::Pdws::TargetWorkflowInfo[]", [0, nil]]
861
+ ]
862
+ )
863
+
864
+ DocumentEncodedRegistry.register(
865
+ :class => Glexchange::Pdws::WorkflowRequestTicket,
866
+ :schema_type => XSD::QName.new(NsXsd, "WorkflowRequestTicket"),
867
+ :schema_element => [
868
+ ["message", "SOAP::SOAPString"],
869
+ ["processTicket", "SOAP::SOAPString"],
870
+ ["submissionTicket", "SOAP::SOAPString"]
871
+ ]
872
+ )
873
+
874
+ DocumentEncodedRegistry.register(
875
+ :class => Glexchange::Pdws::DownloadActionResult,
876
+ :schema_type => XSD::QName.new(NsXsd, "DownloadActionResult"),
877
+ :schema_element => [
878
+ ["message", "SOAP::SOAPString"],
879
+ ["processingFinished", "SOAP::SOAPBoolean"],
880
+ ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
881
+ ]
882
+ )
883
+
884
+ DocumentEncodedRegistry.register(
885
+ :class => Glexchange::Pdws::UploadActionResult,
886
+ :schema_type => XSD::QName.new(NsXsd, "UploadActionResult"),
887
+ :schema_element => [
888
+ ["messages", "SOAP::SOAPString[]", [0, nil]],
889
+ ["processingFinished", "SOAP::SOAPBoolean"]
890
+ ]
891
+ )
892
+
893
+ DocumentEncodedRegistry.register(
894
+ :class => Glexchange::Pdws::DownloadCollateralResult,
895
+ :schema_type => XSD::QName.new(NsXsd, "DownloadCollateralResult"),
896
+ :schema_element => [
897
+ ["errorMessages", "SOAP::SOAPString[]", [0, nil]],
898
+ ["processingFinished", "SOAP::SOAPBoolean"],
899
+ ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
900
+ ]
901
+ )
902
+
903
+ DocumentEncodedRegistry.register(
904
+ :class => Glexchange::Pdws::Base64Binary,
905
+ :schema_type => XSD::QName.new(NsXmlmime, "base64Binary"),
906
+ :schema_attribute => {
907
+ XSD::QName.new(NsXmlmime, "contentType") => "SOAP::SOAPString"
908
+ }
909
+ )
910
+
911
+ DocumentEncodedRegistry.register(
912
+ :class => Glexchange::Pdws::HexBinary,
913
+ :schema_type => XSD::QName.new(NsXmlmime, "hexBinary"),
914
+ :schema_attribute => {
915
+ XSD::QName.new(NsXmlmime, "contentType") => "SOAP::SOAPString"
916
+ }
917
+ )
918
+
919
+ DocumentLiteralRegistry.register(
920
+ :class => Glexchange::Pdws::Notification,
921
+ :schema_type => XSD::QName.new(NsXsd, "Notification"),
922
+ :schema_element => [
923
+ ["errorMessage", "SOAP::SOAPString"],
924
+ ["notificationDate", "Glexchange::Pdws::Date"],
925
+ ["notificationPriority", "Glexchange::Pdws::NotificationPriority"],
926
+ ["notificationText", "SOAP::SOAPString"]
927
+ ]
928
+ )
929
+
930
+ DocumentLiteralRegistry.register(
931
+ :class => Glexchange::Pdws::NotificationPriority,
932
+ :schema_type => XSD::QName.new(NsXsd, "NotificationPriority"),
933
+ :schema_element => [
934
+ ["notificationPriorityName", "SOAP::SOAPString"]
935
+ ]
936
+ )
937
+
938
+ DocumentLiteralRegistry.register(
939
+ :class => Glexchange::Pdws::Announcement,
940
+ :schema_type => XSD::QName.new(NsXsd, "Announcement"),
941
+ :schema_element => [
942
+ ["announcementText", "SOAP::SOAPString"],
943
+ ["date", "Glexchange::Pdws::Date"]
944
+ ]
945
+ )
946
+
947
+ DocumentLiteralRegistry.register(
948
+ :class => Glexchange::Pdws::Batch,
949
+ :schema_type => XSD::QName.new(NsXsd, "Batch"),
950
+ :schema_element => [
951
+ ["name", "SOAP::SOAPString"],
952
+ ["targetLanguages", "SOAP::SOAPString[]", [0, nil]],
953
+ ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
954
+ ]
955
+ )
956
+
957
+ DocumentLiteralRegistry.register(
958
+ :class => Glexchange::Pdws::ContentMonitorPluginInfo,
959
+ :schema_type => XSD::QName.new(NsXsd, "ContentMonitorPluginInfo"),
960
+ :schema_element => [
961
+ ["pluginId", "SOAP::SOAPString"],
962
+ ["pluginName", "SOAP::SOAPString"]
963
+ ]
964
+ )
965
+
966
+ DocumentLiteralRegistry.register(
967
+ :class => Glexchange::Pdws::Date,
968
+ :schema_type => XSD::QName.new(NsXsd, "Date"),
969
+ :schema_element => [
970
+ ["critical", "SOAP::SOAPBoolean"],
971
+ ["date", "SOAP::SOAPLong"]
972
+ ]
973
+ )
974
+
975
+ DocumentLiteralRegistry.register(
976
+ :class => Glexchange::Pdws::Document,
977
+ :schema_type => XSD::QName.new(NsXsd, "Document"),
978
+ :schema_element => [
979
+ ["documentGroup", "Glexchange::Pdws::DocumentGroup"],
980
+ ["documentInfo", "Glexchange::Pdws::DocumentInfo"],
981
+ ["id", "SOAP::SOAPString"],
982
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
983
+ ["sourceWordCount", "SOAP::SOAPInt"],
984
+ ["ticket", "SOAP::SOAPString"]
985
+ ]
986
+ )
987
+
988
+ DocumentLiteralRegistry.register(
989
+ :class => Glexchange::Pdws::DocumentGroup,
990
+ :schema_type => XSD::QName.new(NsXsd, "DocumentGroup"),
991
+ :schema_element => [
992
+ ["classifier", "SOAP::SOAPString"],
993
+ ["documents", "Glexchange::Pdws::Document[]", [0, nil]],
994
+ ["mimeType", "SOAP::SOAPString"],
995
+ ["submission", "Glexchange::Pdws::Submission"]
996
+ ]
997
+ )
998
+
999
+ DocumentLiteralRegistry.register(
1000
+ :class => Glexchange::Pdws::DocumentInfo,
1001
+ :schema_type => XSD::QName.new(NsXsd, "DocumentInfo"),
1002
+ :schema_element => [
1003
+ ["childDocumentInfos", "Glexchange::Pdws::DocumentInfo[]", [0, nil]],
1004
+ ["clientIdentifier", "SOAP::SOAPString"],
1005
+ ["dateRequested", "Glexchange::Pdws::Date"],
1006
+ ["instructions", "SOAP::SOAPString"],
1007
+ ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
1008
+ ["name", "SOAP::SOAPString"],
1009
+ ["projectTicket", "SOAP::SOAPString"],
1010
+ ["sourceLocale", "SOAP::SOAPString"],
1011
+ ["submissionTicket", "SOAP::SOAPString"],
1012
+ ["targetInfos", "Glexchange::Pdws::TargetInfo[]", [0, nil]],
1013
+ ["wordCount", "SOAP::SOAPInt"]
1014
+ ]
1015
+ )
1016
+
1017
+ DocumentLiteralRegistry.register(
1018
+ :class => Glexchange::Pdws::DocumentPagedList,
1019
+ :schema_type => XSD::QName.new(NsXsd, "DocumentPagedList"),
1020
+ :schema_element => [
1021
+ ["elements", "Glexchange::Pdws::Document[]", [0, nil]],
1022
+ ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
1023
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1024
+ ["totalCount", "SOAP::SOAPLong"]
1025
+ ]
1026
+ )
1027
+
1028
+ DocumentLiteralRegistry.register(
1029
+ :class => Glexchange::Pdws::DocumentSearchRequest,
1030
+ :schema_type => XSD::QName.new(NsXsd, "DocumentSearchRequest"),
1031
+ :schema_element => [
1032
+ ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
1033
+ ["sourceLocaleId", "SOAP::SOAPString"],
1034
+ ["submissionTicket", "SOAP::SOAPString"]
1035
+ ]
1036
+ )
1037
+
1038
+ DocumentLiteralRegistry.register(
1039
+ :class => Glexchange::Pdws::DocumentTicket,
1040
+ :schema_type => XSD::QName.new(NsXsd, "DocumentTicket"),
1041
+ :schema_element => [
1042
+ ["submissionTicket", "SOAP::SOAPString"],
1043
+ ["ticketId", "SOAP::SOAPString"]
1044
+ ]
1045
+ )
1046
+
1047
+ DocumentLiteralRegistry.register(
1048
+ :class => Glexchange::Pdws::EntityTypeEnum,
1049
+ :schema_type => XSD::QName.new(NsXsd, "EntityTypeEnum"),
1050
+ :schema_element => [
1051
+ ["name", "SOAP::SOAPString"],
1052
+ ["value", "SOAP::SOAPInt"]
1053
+ ]
1054
+ )
1055
+
1056
+ DocumentLiteralRegistry.register(
1057
+ :class => Glexchange::Pdws::FileFormatProfile,
1058
+ :schema_type => XSD::QName.new(NsXsd, "FileFormatProfile"),
1059
+ :schema_element => [
1060
+ ["configurable", "SOAP::SOAPBoolean"],
1061
+ ["isDefault", "SOAP::SOAPBoolean"],
1062
+ ["mimeType", "SOAP::SOAPString"],
1063
+ ["pluginId", "SOAP::SOAPString"],
1064
+ ["pluginName", "SOAP::SOAPString"],
1065
+ ["profileName", "SOAP::SOAPString"],
1066
+ ["targetWorkflowDefinition", "Glexchange::Pdws::WorkflowDefinition"],
1067
+ ["ticket", "SOAP::SOAPString"]
1068
+ ]
1069
+ )
1070
+
1071
+ DocumentLiteralRegistry.register(
1072
+ :class => Glexchange::Pdws::FileFormatProgressData,
1073
+ :schema_type => XSD::QName.new(NsXsd, "FileFormatProgressData"),
1074
+ :schema_element => [
1075
+ ["dateCompleted", "Glexchange::Pdws::Date"],
1076
+ ["fileCount", "SOAP::SOAPLong"],
1077
+ ["fileFormatName", "SOAP::SOAPString"],
1078
+ ["fileProgressData", "Glexchange::Pdws::FileProgressData"],
1079
+ ["jobTicket", "SOAP::SOAPString"],
1080
+ ["workflowDueDate", "Glexchange::Pdws::Date"],
1081
+ ["workflowStatus", "SOAP::SOAPString"]
1082
+ ]
1083
+ )
1084
+
1085
+ DocumentLiteralRegistry.register(
1086
+ :class => Glexchange::Pdws::FileProgressData,
1087
+ :schema_type => XSD::QName.new(NsXsd, "FileProgressData"),
1088
+ :schema_element => [
1089
+ ["numberOfAvailableFiles", "SOAP::SOAPInt"],
1090
+ ["numberOfCanceledFiles", "SOAP::SOAPInt"],
1091
+ ["numberOfCompletedFiles", "SOAP::SOAPInt"],
1092
+ ["numberOfDeliveredFiles", "SOAP::SOAPInt"],
1093
+ ["numberOfFailedFiles", "SOAP::SOAPInt"],
1094
+ ["numberOfInProcessFiles", "SOAP::SOAPInt"],
1095
+ ["overallProgressPercent", "SOAP::SOAPInt"]
1096
+ ]
1097
+ )
1098
+
1099
+ DocumentLiteralRegistry.register(
1100
+ :class => Glexchange::Pdws::FuzzyTmStatistics,
1101
+ :schema_type => XSD::QName.new(NsXsd, "FuzzyTmStatistics"),
1102
+ :schema_element => [
1103
+ ["fuzzyName", "SOAP::SOAPString"],
1104
+ ["wordCount", "SOAP::SOAPInt"]
1105
+ ]
1106
+ )
1107
+
1108
+ DocumentLiteralRegistry.register(
1109
+ :class => Glexchange::Pdws::ItemFolderEnum,
1110
+ :schema_type => XSD::QName.new(NsXsd, "ItemFolderEnum"),
1111
+ :schema_element => [
1112
+ ["value", "SOAP::SOAPInt"]
1113
+ ]
1114
+ )
1115
+
1116
+ DocumentLiteralRegistry.register(
1117
+ :class => Glexchange::Pdws::ItemStatusEnum,
1118
+ :schema_type => XSD::QName.new(NsXsd, "ItemStatusEnum"),
1119
+ :schema_element => [
1120
+ ["name", "SOAP::SOAPString"],
1121
+ ["value", "SOAP::SOAPInt"]
1122
+ ]
1123
+ )
1124
+
1125
+ DocumentLiteralRegistry.register(
1126
+ :class => Glexchange::Pdws::Metadata,
1127
+ :schema_type => XSD::QName.new(NsXsd, "Metadata"),
1128
+ :schema_element => [
1129
+ ["key", "SOAP::SOAPString"],
1130
+ ["value", "SOAP::SOAPString"]
1131
+ ]
1132
+ )
1133
+
1134
+ DocumentLiteralRegistry.register(
1135
+ :class => Glexchange::Pdws::Language,
1136
+ :schema_type => XSD::QName.new(NsXsd, "Language"),
1137
+ :schema_element => [
1138
+ ["locale", "SOAP::SOAPString"],
1139
+ ["value", "SOAP::SOAPString"]
1140
+ ]
1141
+ )
1142
+
1143
+ DocumentLiteralRegistry.register(
1144
+ :class => Glexchange::Pdws::LanguageDirection,
1145
+ :schema_type => XSD::QName.new(NsXsd, "LanguageDirection"),
1146
+ :schema_element => [
1147
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
1148
+ ["targetLanguage", "Glexchange::Pdws::Language"]
1149
+ ]
1150
+ )
1151
+
1152
+ DocumentLiteralRegistry.register(
1153
+ :class => Glexchange::Pdws::LanguageDirectionModel,
1154
+ :schema_type => XSD::QName.new(NsXsd, "LanguageDirectionModel"),
1155
+ :schema_element => [
1156
+ ["dateCompleted", "Glexchange::Pdws::Date"],
1157
+ ["fileCount", "SOAP::SOAPLong"],
1158
+ ["fileFormatProgressData", "Glexchange::Pdws::FileFormatProgressData[]", [0, nil]],
1159
+ ["fileProgress", "Glexchange::Pdws::FileProgressData"],
1160
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
1161
+ ["targetLanguage", "Glexchange::Pdws::Language"],
1162
+ ["workflowDueDate", "Glexchange::Pdws::Date"],
1163
+ ["workflowStatus", "SOAP::SOAPString"]
1164
+ ]
1165
+ )
1166
+
1167
+ DocumentLiteralRegistry.register(
1168
+ :class => Glexchange::Pdws::LanguagePhaseInfo,
1169
+ :schema_type => XSD::QName.new(NsXsd, "LanguagePhaseInfo"),
1170
+ :schema_element => [
1171
+ ["phaseStartDate", "Glexchange::Pdws::Date"],
1172
+ ["sourceFileList", "SOAP::SOAPString[]", [0, nil]],
1173
+ ["tmStatistics", "Glexchange::Pdws::TmStatistics"]
1174
+ ]
1175
+ )
1176
+
1177
+ DocumentLiteralRegistry.register(
1178
+ :class => Glexchange::Pdws::Organization,
1179
+ :schema_type => XSD::QName.new(NsXsd, "Organization"),
1180
+ :schema_element => [
1181
+ ["availableTasks", "SOAP::SOAPInteger"],
1182
+ ["parentOrganization", "Glexchange::Pdws::Organization"],
1183
+ ["organizationInfo", "Glexchange::Pdws::OrganizationInfo"],
1184
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1185
+ ["ticket", "SOAP::SOAPString"]
1186
+ ]
1187
+ )
1188
+
1189
+ DocumentLiteralRegistry.register(
1190
+ :class => Glexchange::Pdws::OrganizationInfo,
1191
+ :schema_type => XSD::QName.new(NsXsd, "OrganizationInfo"),
1192
+ :schema_element => [
1193
+ ["name", "SOAP::SOAPString"],
1194
+ ["ticket", "SOAP::SOAPString"],
1195
+ ["currencyCode", "SOAP::SOAPString"],
1196
+ ["domain", "SOAP::SOAPString"],
1197
+ ["theme", "SOAP::SOAPString"],
1198
+ ["enabled", "SOAP::SOAPBoolean"]
1199
+ ]
1200
+ )
1201
+
1202
+ DocumentLiteralRegistry.register(
1203
+ :class => Glexchange::Pdws::PagedListInfo,
1204
+ :schema_type => XSD::QName.new(NsXsd, "PagedListInfo"),
1205
+ :schema_element => [
1206
+ ["index", "SOAP::SOAPInt"],
1207
+ ["indexesSize", "SOAP::SOAPInt"],
1208
+ ["size", "SOAP::SOAPInt"],
1209
+ ["sortDirection", "SOAP::SOAPString"],
1210
+ ["sortProperty", "SOAP::SOAPString"]
1211
+ ]
1212
+ )
1213
+
1214
+ DocumentLiteralRegistry.register(
1215
+ :class => Glexchange::Pdws::Phase,
1216
+ :schema_type => XSD::QName.new(NsXsd, "Phase"),
1217
+ :schema_element => [
1218
+ ["dateEnded", "Glexchange::Pdws::Date"],
1219
+ ["dueDate", "Glexchange::Pdws::Date"],
1220
+ ["name", "SOAP::SOAPString"],
1221
+ ["status", "Glexchange::Pdws::ItemStatusEnum"]
1222
+ ]
1223
+ )
1224
+
1225
+ DocumentLiteralRegistry.register(
1226
+ :class => Glexchange::Pdws::PreviewResult,
1227
+ :schema_type => XSD::QName.new(NsXsd, "PreviewResult"),
1228
+ :schema_element => [
1229
+ ["message", "SOAP::SOAPString"],
1230
+ ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
1231
+ ]
1232
+ )
1233
+
1234
+ DocumentLiteralRegistry.register(
1235
+ :class => Glexchange::Pdws::Priority,
1236
+ :schema_type => XSD::QName.new(NsXsd, "Priority"),
1237
+ :schema_element => [
1238
+ ["name", "SOAP::SOAPString"],
1239
+ ["value", "SOAP::SOAPInt"]
1240
+ ]
1241
+ )
1242
+
1243
+ DocumentLiteralRegistry.register(
1244
+ :class => Glexchange::Pdws::Project,
1245
+ :schema_type => XSD::QName.new(NsXsd, "Project"),
1246
+ :schema_element => [
1247
+ ["announcements", "Glexchange::Pdws::Announcement[]", [0, nil]],
1248
+ ["contentMonitorPluginInfo", "Glexchange::Pdws::ContentMonitorPluginInfo"],
1249
+ ["defaultTargetWorkflowDefinition", "Glexchange::Pdws::WorkflowDefinition"],
1250
+ ["defaultTargetWorkflowDefinitionTicket", "SOAP::SOAPString"],
1251
+ ["fileFormatProfiles", "Glexchange::Pdws::FileFormatProfile[]", [0, nil]],
1252
+ ["includeSubmissionNameInLocalizationKit", "SOAP::SOAPBoolean[]", [0, nil]],
1253
+ ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
1254
+ ["organizationName", "SOAP::SOAPString"],
1255
+ ["projectCustomFieldConfiguration", "Glexchange::Pdws::ProjectCustomFieldConfiguration[]", [0, nil]],
1256
+ ["projectInfo", "Glexchange::Pdws::ProjectInfo"],
1257
+ ["projectLanguageDirections", "Glexchange::Pdws::ProjectLanguageDirection[]", [0, nil]],
1258
+ ["ticket", "SOAP::SOAPString"],
1259
+ ["workflowDefinitions", "Glexchange::Pdws::WorkflowDefinition[]", [0, nil]]
1260
+ ]
1261
+ )
1262
+
1263
+ DocumentLiteralRegistry.register(
1264
+ :class => Glexchange::Pdws::ProjectInfo,
1265
+ :schema_type => XSD::QName.new(NsXsd, "ProjectInfo"),
1266
+ :schema_element => [
1267
+ ["clientIdentifier", "SOAP::SOAPString"],
1268
+ ["defaultJobWorkflowDefinitionTicket", "SOAP::SOAPString"],
1269
+ ["defaultSubmissionWorkflowDefinitionTicket", "SOAP::SOAPString"],
1270
+ ["defaultTargetWorkflowDefinitionTicket", "SOAP::SOAPString"],
1271
+ ["enabled", "SOAP::SOAPBoolean"],
1272
+ ["name", "SOAP::SOAPString"],
1273
+ ["shortCode", "SOAP::SOAPString"]
1274
+ ]
1275
+ )
1276
+
1277
+ DocumentLiteralRegistry.register(
1278
+ :class => Glexchange::Pdws::ProjectLanguage,
1279
+ :schema_type => XSD::QName.new(NsXsd, "ProjectLanguage"),
1280
+ :schema_element => [
1281
+ ["customLocaleCode", "SOAP::SOAPString"],
1282
+ ["localeCode", "SOAP::SOAPString"]
1283
+ ]
1284
+ )
1285
+
1286
+ DocumentLiteralRegistry.register(
1287
+ :class => Glexchange::Pdws::ProjectLanguageDirection,
1288
+ :schema_type => XSD::QName.new(NsXsd, "ProjectLanguageDirection"),
1289
+ :schema_element => [
1290
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
1291
+ ["targetLanguage", "Glexchange::Pdws::Language"],
1292
+ ["default", "SOAP::SOAPBoolean"],
1293
+ ["frequent", "SOAP::SOAPBoolean"]
1294
+ ]
1295
+ )
1296
+
1297
+ DocumentLiteralRegistry.register(
1298
+ :class => Glexchange::Pdws::ProjectAClient,
1299
+ :schema_type => XSD::QName.new(NsXsd, "ProjectAClient"),
1300
+ :schema_element => [
1301
+ ["enabled", "SOAP::SOAPBoolean"],
1302
+ ["name", "SOAP::SOAPString"],
1303
+ ["parentOrganization", "Glexchange::Pdws::Organization"],
1304
+ ["ticket", "SOAP::SOAPString"]
1305
+ ]
1306
+ )
1307
+
1308
+ DocumentLiteralRegistry.register(
1309
+ :class => Glexchange::Pdws::RepositoryItem,
1310
+ :schema_type => XSD::QName.new(NsXsd, "RepositoryItem"),
1311
+ :schema_element => [
1312
+ ["data", "Glexchange::Pdws::Base64Binary"],
1313
+ ["resourceInfo", "Glexchange::Pdws::ResourceInfo"]
1314
+ ]
1315
+ )
1316
+
1317
+ DocumentLiteralRegistry.register(
1318
+ :class => Glexchange::Pdws::ResourceInfo,
1319
+ :schema_type => XSD::QName.new(NsXsd, "ResourceInfo"),
1320
+ :schema_element => [
1321
+ ["classifier", "SOAP::SOAPString"],
1322
+ ["clientIdentifier", "SOAP::SOAPString"],
1323
+ ["description", "SOAP::SOAPString"],
1324
+ ["encoding", "SOAP::SOAPString"],
1325
+ ["md5Checksum", "SOAP::SOAPString"],
1326
+ ["mimeType", "SOAP::SOAPString"],
1327
+ ["name", "SOAP::SOAPString"],
1328
+ ["path", "SOAP::SOAPString"],
1329
+ ["resourceInfoId", "SOAP::SOAPLong"],
1330
+ ["size", "SOAP::SOAPLong"],
1331
+ ["type", "Glexchange::Pdws::ResourceType"]
1332
+ ]
1333
+ )
1334
+
1335
+ DocumentLiteralRegistry.register(
1336
+ :class => Glexchange::Pdws::ResourceType,
1337
+ :schema_type => XSD::QName.new(NsXsd, "ResourceType"),
1338
+ :schema_element => [
1339
+ ["value", "SOAP::SOAPInt"]
1340
+ ]
1341
+ )
1342
+
1343
+ DocumentLiteralRegistry.register(
1344
+ :class => Glexchange::Pdws::Submission,
1345
+ :schema_type => XSD::QName.new(NsXsd, "Submission"),
1346
+ :schema_element => [
1347
+ ["alerts", "Glexchange::Pdws::Notification[]", [0, nil]],
1348
+ ["availableTasks", "SOAP::SOAPInt"],
1349
+ ["batches", "Glexchange::Pdws::Batch[]", [0, nil]],
1350
+ ["dateArchived", "Glexchange::Pdws::Date"],
1351
+ ["dateCompleted", "Glexchange::Pdws::Date"],
1352
+ ["dateCreated", "Glexchange::Pdws::Date"],
1353
+ ["dateEstimated", "Glexchange::Pdws::Date"],
1354
+ ["documents", "Glexchange::Pdws::Document[]", [0, nil]],
1355
+ ["dueDate", "Glexchange::Pdws::Date"],
1356
+ ["id", "SOAP::SOAPString"],
1357
+ ["owner", "SOAP::SOAPString"],
1358
+ ["project", "Glexchange::Pdws::Project"],
1359
+ ["status", "Glexchange::Pdws::ItemStatusEnum"],
1360
+ ["submissionId", "SOAP::SOAPLong"],
1361
+ ["submissionInfo", "Glexchange::Pdws::SubmissionInfo"],
1362
+ ["submitterFullNames", "SOAP::SOAPString[]", [0, nil]],
1363
+ ["ticket", "SOAP::SOAPString"],
1364
+ ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
1365
+ ]
1366
+ )
1367
+
1368
+ DocumentLiteralRegistry.register(
1369
+ :class => Glexchange::Pdws::SubmissionInfo,
1370
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionInfo"),
1371
+ :schema_element => [
1372
+ ["additionalCosts", "SOAP::SOAPString"],
1373
+ ["autoStartChilds", "SOAP::SOAPBoolean"],
1374
+ ["claimScope", "Glexchange::Pdws::ClaimScopeEnum"],
1375
+ ["clientIdentifier", "SOAP::SOAPString"],
1376
+ ["dateRequested", "Glexchange::Pdws::Date"],
1377
+ ["internalNotes", "SOAP::SOAPString"],
1378
+ ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
1379
+ ["name", "SOAP::SOAPString"],
1380
+ ["officeName", "SOAP::SOAPString"],
1381
+ ["paClientTicket", "SOAP::SOAPString"],
1382
+ ["paJobNumber", "SOAP::SOAPString"],
1383
+ ["priority", "Glexchange::Pdws::Priority"],
1384
+ ["projectTicket", "SOAP::SOAPString"],
1385
+ ["revenue", "SOAP::SOAPDouble"],
1386
+ ["submissionBackground", "SOAP::SOAPString"],
1387
+ ["submissionCustomFields", "Glexchange::Pdws::SubmissionCustomFields[]", [0, nil]],
1388
+ ["submitters", "SOAP::SOAPString[]", [0, nil]],
1389
+ ["workflowDefinitionTicket", "SOAP::SOAPString"]
1390
+ ]
1391
+ )
1392
+
1393
+ DocumentLiteralRegistry.register(
1394
+ :class => Glexchange::Pdws::SubmissionPagedList,
1395
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionPagedList"),
1396
+ :schema_element => [
1397
+ ["elements", "Glexchange::Pdws::Submission[]", [0, nil]],
1398
+ ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
1399
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1400
+ ["totalCount", "SOAP::SOAPLong"]
1401
+ ]
1402
+ )
1403
+
1404
+ DocumentLiteralRegistry.register(
1405
+ :class => Glexchange::Pdws::SimpleSubmissionSearchModel,
1406
+ :schema_type => XSD::QName.new(NsXsd, "SimpleSubmissionSearchModel"),
1407
+ :schema_element => [
1408
+ ["alerts", "Glexchange::Pdws::Notification[]", [0, nil]],
1409
+ ["availableTasks", "SOAP::SOAPLong"],
1410
+ ["budgetStatus", "SOAP::SOAPInt"],
1411
+ ["claimScope", "Glexchange::Pdws::ClaimScopeEnum"],
1412
+ ["customFields", "SOAP::SOAPString[]", [0, nil]],
1413
+ ["date", "Glexchange::Pdws::Date"],
1414
+ ["dateArchived", "Glexchange::Pdws::Date"],
1415
+ ["dateCompleted", "Glexchange::Pdws::Date"],
1416
+ ["dateStarted", "Glexchange::Pdws::Date"],
1417
+ ["dueDate", "Glexchange::Pdws::Date"],
1418
+ ["fileCount", "SOAP::SOAPLong"],
1419
+ ["fileProgress", "Glexchange::Pdws::FileProgressData"],
1420
+ ["gate", "SOAP::SOAPByte"],
1421
+ ["id", "SOAP::SOAPString"],
1422
+ ["instructions", "SOAP::SOAPString"],
1423
+ ["officeName", "SOAP::SOAPString"],
1424
+ ["owner", "Glexchange::Pdws::UserData[]", [0, nil]],
1425
+ ["paClientName", "SOAP::SOAPString"],
1426
+ ["parentSubmissionName", "SOAP::SOAPString"],
1427
+ ["parentTicket", "SOAP::SOAPString"],
1428
+ ["pmNotes", "SOAP::SOAPString"],
1429
+ ["priority", "SOAP::SOAPString"],
1430
+ ["projectName", "SOAP::SOAPString"],
1431
+ ["projectTicket", "SOAP::SOAPString"],
1432
+ ["quote", "SOAP::SOAPByte"],
1433
+ ["reserved", "SOAP::SOAPBoolean"],
1434
+ ["sourceLanguage", "SOAP::SOAPString"],
1435
+ ["status", "Glexchange::Pdws::ItemStatusEnum"],
1436
+ ["submissionBackground", "SOAP::SOAPString"],
1437
+ ["submissionName", "SOAP::SOAPString"],
1438
+ ["submitterFullName", "Glexchange::Pdws::UserData[]", [0, nil]],
1439
+ ["ticket", "SOAP::SOAPString"],
1440
+ ["wordCount", "SOAP::SOAPLong"],
1441
+ ["workflowDueDate", "Glexchange::Pdws::Date"],
1442
+ ["workflowStatus", "SOAP::SOAPString"]
1443
+ ]
1444
+ )
1445
+
1446
+ DocumentLiteralRegistry.register(
1447
+ :class => Glexchange::Pdws::SubmissionSearchModelPagedList,
1448
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionSearchModelPagedList"),
1449
+ :schema_element => [
1450
+ ["elements", "Glexchange::Pdws::SimpleSubmissionSearchModel[]", [0, nil]],
1451
+ ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
1452
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1453
+ ["totalCount", "SOAP::SOAPLong"]
1454
+ ]
1455
+ )
1456
+
1457
+ DocumentLiteralRegistry.register(
1458
+ :class => Glexchange::Pdws::SubmissionSearchRequest,
1459
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionSearchRequest"),
1460
+ :schema_element => [
1461
+ ["folder", "Glexchange::Pdws::ItemFolderEnum"],
1462
+ ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
1463
+ ["submissionDate", "Glexchange::Pdws::Date"],
1464
+ ["submissionDueDate", "Glexchange::Pdws::Date"],
1465
+ ["submissionName", "SOAP::SOAPString"]
1466
+ ]
1467
+ )
1468
+
1469
+ DocumentLiteralRegistry.register(
1470
+ :class => Glexchange::Pdws::Target,
1471
+ :schema_type => XSD::QName.new(NsXsd, "Target"),
1472
+ :schema_element => [
1473
+ ["availableTasks", "SOAP::SOAPLong"],
1474
+ ["dateCompleted", "Glexchange::Pdws::Date"],
1475
+ ["dateCreated", "Glexchange::Pdws::Date"],
1476
+ ["dateEstimated", "Glexchange::Pdws::Date"],
1477
+ ["document", "Glexchange::Pdws::Document"],
1478
+ ["downloadThresholdTimeStamp", "Glexchange::Pdws::Date"],
1479
+ ["dueDate", "Glexchange::Pdws::Date"],
1480
+ ["fileName", "SOAP::SOAPString"],
1481
+ ["id", "SOAP::SOAPString"],
1482
+ ["phases", "Glexchange::Pdws::Phase[]", [0, nil]],
1483
+ ["refPhase", "Glexchange::Pdws::Phase"],
1484
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
1485
+ ["sourceWordCount", "SOAP::SOAPInt"],
1486
+ ["status", "Glexchange::Pdws::ItemStatusEnum"],
1487
+ ["targetInfo", "Glexchange::Pdws::TargetInfo"],
1488
+ ["targetLanguage", "Glexchange::Pdws::Language"],
1489
+ ["targetWordCount", "SOAP::SOAPInt"],
1490
+ ["ticket", "SOAP::SOAPString"],
1491
+ ["tmStatistics", "Glexchange::Pdws::TmStatistics"],
1492
+ ["workflowDefinition", "Glexchange::Pdws::WorkflowDefinition"]
1493
+ ]
1494
+ )
1495
+
1496
+ DocumentLiteralRegistry.register(
1497
+ :class => Glexchange::Pdws::TargetInfo,
1498
+ :schema_type => XSD::QName.new(NsXsd, "TargetInfo"),
1499
+ :schema_element => [
1500
+ ["dateRequested", "Glexchange::Pdws::Date"],
1501
+ ["encoding", "SOAP::SOAPString"],
1502
+ ["instructions", "SOAP::SOAPString"],
1503
+ ["metadata", "Glexchange::Pdws::Metadata[]", [0, nil]],
1504
+ ["priority", "Glexchange::Pdws::Priority"],
1505
+ ["requestedDueDate", "SOAP::SOAPLong"],
1506
+ ["targetLocale", "SOAP::SOAPString"],
1507
+ ["workflowDefinitionTicket", "SOAP::SOAPString"]
1508
+ ]
1509
+ )
1510
+
1511
+ DocumentLiteralRegistry.register(
1512
+ :class => Glexchange::Pdws::TargetPagedList,
1513
+ :schema_type => XSD::QName.new(NsXsd, "TargetPagedList"),
1514
+ :schema_element => [
1515
+ ["elements", "Glexchange::Pdws::Target[]", [0, nil]],
1516
+ ["pagedListInfo", "Glexchange::Pdws::PagedListInfo"],
1517
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1518
+ ["totalCount", "SOAP::SOAPLong"]
1519
+ ]
1520
+ )
1521
+
1522
+ DocumentLiteralRegistry.register(
1523
+ :class => Glexchange::Pdws::TargetSearchRequest,
1524
+ :schema_type => XSD::QName.new(NsXsd, "TargetSearchRequest"),
1525
+ :schema_element => [
1526
+ ["dateCreated", "Glexchange::Pdws::Date"],
1527
+ ["folder", "Glexchange::Pdws::ItemFolderEnum"],
1528
+ ["projectTickets", "SOAP::SOAPString[]", [0, nil]],
1529
+ ["sourceLocaleId", "SOAP::SOAPString"],
1530
+ ["submissionTicket", "SOAP::SOAPString"],
1531
+ ["targetLocaleId", "SOAP::SOAPString"]
1532
+ ]
1533
+ )
1534
+
1535
+ DocumentLiteralRegistry.register(
1536
+ :class => Glexchange::Pdws::Task,
1537
+ :schema_type => XSD::QName.new(NsXsd, "Task"),
1538
+ :schema_element => [
1539
+ ["groupName", "SOAP::SOAPString"],
1540
+ ["selectStyle", "SOAP::SOAPInt"],
1541
+ ["taskId", "SOAP::SOAPInt"],
1542
+ ["taskName", "SOAP::SOAPString"],
1543
+ ["weight", "SOAP::SOAPInt"]
1544
+ ]
1545
+ )
1546
+
1547
+ DocumentLiteralRegistry.register(
1548
+ :class => Glexchange::Pdws::TmStatistics,
1549
+ :schema_type => XSD::QName.new(NsXsd, "TmStatistics"),
1550
+ :schema_element => [
1551
+ ["fuzzyRepetitionsWordCount1", "Glexchange::Pdws::FuzzyTmStatistics"],
1552
+ ["fuzzyRepetitionsWordCount10", "Glexchange::Pdws::FuzzyTmStatistics"],
1553
+ ["fuzzyRepetitionsWordCount2", "Glexchange::Pdws::FuzzyTmStatistics"],
1554
+ ["fuzzyRepetitionsWordCount3", "Glexchange::Pdws::FuzzyTmStatistics"],
1555
+ ["fuzzyRepetitionsWordCount4", "Glexchange::Pdws::FuzzyTmStatistics"],
1556
+ ["fuzzyRepetitionsWordCount5", "Glexchange::Pdws::FuzzyTmStatistics"],
1557
+ ["fuzzyRepetitionsWordCount6", "Glexchange::Pdws::FuzzyTmStatistics"],
1558
+ ["fuzzyRepetitionsWordCount7", "Glexchange::Pdws::FuzzyTmStatistics"],
1559
+ ["fuzzyRepetitionsWordCount8", "Glexchange::Pdws::FuzzyTmStatistics"],
1560
+ ["fuzzyRepetitionsWordCount9", "Glexchange::Pdws::FuzzyTmStatistics"],
1561
+ ["fuzzyWordCount1", "Glexchange::Pdws::FuzzyTmStatistics"],
1562
+ ["fuzzyWordCount10", "Glexchange::Pdws::FuzzyTmStatistics"],
1563
+ ["fuzzyWordCount2", "Glexchange::Pdws::FuzzyTmStatistics"],
1564
+ ["fuzzyWordCount3", "Glexchange::Pdws::FuzzyTmStatistics"],
1565
+ ["fuzzyWordCount4", "Glexchange::Pdws::FuzzyTmStatistics"],
1566
+ ["fuzzyWordCount5", "Glexchange::Pdws::FuzzyTmStatistics"],
1567
+ ["fuzzyWordCount6", "Glexchange::Pdws::FuzzyTmStatistics"],
1568
+ ["fuzzyWordCount7", "Glexchange::Pdws::FuzzyTmStatistics"],
1569
+ ["fuzzyWordCount8", "Glexchange::Pdws::FuzzyTmStatistics"],
1570
+ ["fuzzyWordCount9", "Glexchange::Pdws::FuzzyTmStatistics"],
1571
+ ["inContextMatchWordCount", "SOAP::SOAPInt"],
1572
+ ["noMatchWordCount", "SOAP::SOAPInt"],
1573
+ ["oneHundredMatchWordCount", "SOAP::SOAPInt"],
1574
+ ["repetitionWordCount", "SOAP::SOAPInt"],
1575
+ ["totalWordCount", "SOAP::SOAPInt"]
1576
+ ]
1577
+ )
1578
+
1579
+ DocumentLiteralRegistry.register(
1580
+ :class => Glexchange::Pdws::WorkflowDefinition,
1581
+ :schema_type => XSD::QName.new(NsXsd, "WorkflowDefinition"),
1582
+ :schema_element => [
1583
+ ["description", "SOAP::SOAPString"],
1584
+ ["name", "SOAP::SOAPString"],
1585
+ ["ticket", "SOAP::SOAPString"],
1586
+ ["type", "Glexchange::Pdws::EntityTypeEnum"]
1587
+ ]
1588
+ )
1589
+
1590
+ DocumentLiteralRegistry.register(
1591
+ :class => Glexchange::Pdws::UserData,
1592
+ :schema_type => XSD::QName.new(NsXsd, "UserData"),
1593
+ :schema_element => [
1594
+ ["email", "SOAP::SOAPString"],
1595
+ ["name", "SOAP::SOAPString"]
1596
+ ]
1597
+ )
1598
+
1599
+ DocumentLiteralRegistry.register(
1600
+ :class => Glexchange::Pdws::UserInfo,
1601
+ :schema_type => XSD::QName.new(NsXsd, "UserInfo"),
1602
+ :schema_element => [
1603
+ ["accountLocked", "SOAP::SOAPBoolean"],
1604
+ ["accountNonExpired", "SOAP::SOAPBoolean"],
1605
+ ["address", "SOAP::SOAPString"],
1606
+ ["autoClaimMultipleTasks", "SOAP::SOAPBoolean"],
1607
+ ["claimMultipleJobTasks", "SOAP::SOAPBoolean"],
1608
+ ["credentialsNonExpired", "SOAP::SOAPBoolean"],
1609
+ ["dateLastLogin", "Glexchange::Pdws::Date"],
1610
+ ["department", "SOAP::SOAPString"],
1611
+ ["emailAddress", "SOAP::SOAPString"],
1612
+ ["emailNotification", "SOAP::SOAPBoolean"],
1613
+ ["enabled", "SOAP::SOAPBoolean"],
1614
+ ["fax", "SOAP::SOAPString"],
1615
+ ["firstName", "SOAP::SOAPString"],
1616
+ ["lastName", "SOAP::SOAPString"],
1617
+ ["password", "SOAP::SOAPString"],
1618
+ ["phone1", "SOAP::SOAPString"],
1619
+ ["phone2", "SOAP::SOAPString"],
1620
+ ["timeZone", "SOAP::SOAPString"],
1621
+ ["userName", "SOAP::SOAPString"],
1622
+ ["userType", "SOAP::SOAPString"]
1623
+ ]
1624
+ )
1625
+
1626
+ DocumentLiteralRegistry.register(
1627
+ :class => Glexchange::Pdws::TiUserInfo,
1628
+ :schema_type => XSD::QName.new(NsXsd, "TiUserInfo"),
1629
+ :schema_element => [
1630
+ ["languageDirections", "Glexchange::Pdws::LanguageDirection[]", [0, nil]],
1631
+ ["organizationId", "SOAP::SOAPLong"],
1632
+ ["projectRoles", "SOAP::SOAPString[]", [0, nil]],
1633
+ ["projectTicket", "SOAP::SOAPString[]", [0, nil]],
1634
+ ["systemRoles", "SOAP::SOAPString[]", [0, nil]],
1635
+ ["vendorId", "SOAP::SOAPLong"]
1636
+ ]
1637
+ )
1638
+
1639
+ DocumentLiteralRegistry.register(
1640
+ :class => Glexchange::Pdws::ClaimScopeEnum,
1641
+ :schema_type => XSD::QName.new(NsXsd, "ClaimScopeEnum"),
1642
+ :schema_element => [
1643
+ ["name", "SOAP::SOAPString"],
1644
+ ["value", "SOAP::SOAPInt"]
1645
+ ]
1646
+ )
1647
+
1648
+ DocumentLiteralRegistry.register(
1649
+ :class => Glexchange::Pdws::ProjectCustomFieldConfiguration,
1650
+ :schema_type => XSD::QName.new(NsXsd, "ProjectCustomFieldConfiguration"),
1651
+ :schema_element => [
1652
+ ["description", "SOAP::SOAPString"],
1653
+ ["mandatory", "SOAP::SOAPBoolean"],
1654
+ ["name", "SOAP::SOAPString"],
1655
+ ["type", "SOAP::SOAPString"],
1656
+ ["values", "SOAP::SOAPString"]
1657
+ ]
1658
+ )
1659
+
1660
+ DocumentLiteralRegistry.register(
1661
+ :class => Glexchange::Pdws::SubmissionCustomFields,
1662
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionCustomFields"),
1663
+ :schema_element => [
1664
+ ["fieldName", "SOAP::SOAPString"],
1665
+ ["fieldValue", "SOAP::SOAPString"]
1666
+ ]
1667
+ )
1668
+
1669
+ DocumentLiteralRegistry.register(
1670
+ :class => Glexchange::Pdws::UserProfile,
1671
+ :schema_type => XSD::QName.new(NsXsd, "UserProfile"),
1672
+ :schema_element => [
1673
+ ["availableTasks", "SOAP::SOAPInt"],
1674
+ ["organizationName", "SOAP::SOAPString"],
1675
+ ["systemRoles", "Glexchange::Pdws::Role[]", [0, nil]],
1676
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1677
+ ["ticket", "SOAP::SOAPString"],
1678
+ ["userInfo", "Glexchange::Pdws::UserInfo"],
1679
+ ["vendorName", "SOAP::SOAPString"]
1680
+ ]
1681
+ )
1682
+
1683
+ DocumentLiteralRegistry.register(
1684
+ :class => Glexchange::Pdws::Role,
1685
+ :schema_type => XSD::QName.new(NsXsd, "Role"),
1686
+ :schema_element => [
1687
+ ["policies", "Glexchange::Pdws::Policy[]", [0, nil]],
1688
+ ["roleId", "SOAP::SOAPString"],
1689
+ ["roleType", "Glexchange::Pdws::RoleTypeEnum"],
1690
+ ["tasks", "Glexchange::Pdws::Task[]", [0, nil]],
1691
+ ["ticket", "SOAP::SOAPString"]
1692
+ ]
1693
+ )
1694
+
1695
+ DocumentLiteralRegistry.register(
1696
+ :class => Glexchange::Pdws::RoleTypeEnum,
1697
+ :schema_type => XSD::QName.new(NsXsd, "RoleTypeEnum"),
1698
+ :schema_element => [
1699
+ ["value", "SOAP::SOAPInt"]
1700
+ ]
1701
+ )
1702
+
1703
+ DocumentLiteralRegistry.register(
1704
+ :class => Glexchange::Pdws::Policy,
1705
+ :schema_type => XSD::QName.new(NsXsd, "Policy"),
1706
+ :schema_element => [
1707
+ ["category", "SOAP::SOAPString"],
1708
+ ["policyId", "SOAP::SOAPString"],
1709
+ ["policyType", "Glexchange::Pdws::RoleTypeEnum"]
1710
+ ]
1711
+ )
1712
+
1713
+ DocumentLiteralRegistry.register(
1714
+ :class => Glexchange::Pdws::LanguageWorkflowInfo,
1715
+ :schema_type => XSD::QName.new(NsXsd, "LanguageWorkflowInfo"),
1716
+ :schema_element => [
1717
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
1718
+ ["targetLanguage", "Glexchange::Pdws::Language"]
1719
+ ]
1720
+ )
1721
+
1722
+ DocumentLiteralRegistry.register(
1723
+ :class => Glexchange::Pdws::BatchWorkflowInfo,
1724
+ :schema_type => XSD::QName.new(NsXsd, "BatchWorkflowInfo"),
1725
+ :schema_element => [
1726
+ ["batchName", "SOAP::SOAPString"],
1727
+ ["languageWorkflowInfo", "Glexchange::Pdws::LanguageWorkflowInfo"]
1728
+ ]
1729
+ )
1730
+
1731
+ DocumentLiteralRegistry.register(
1732
+ :class => Glexchange::Pdws::TargetWorkflowInfo,
1733
+ :schema_type => XSD::QName.new(NsXsd, "TargetWorkflowInfo"),
1734
+ :schema_element => [
1735
+ ["batchName", "SOAP::SOAPString"],
1736
+ ["documentName", "SOAP::SOAPString"],
1737
+ ["fileName", "SOAP::SOAPString"],
1738
+ ["sourceLanguage", "Glexchange::Pdws::Language"],
1739
+ ["targetLanguage", "Glexchange::Pdws::Language"],
1740
+ ["targetTicket", "SOAP::SOAPString"]
1741
+ ]
1742
+ )
1743
+
1744
+ DocumentLiteralRegistry.register(
1745
+ :class => Glexchange::Pdws::SubmissionWorkflowInfo,
1746
+ :schema_type => XSD::QName.new(NsXsd, "SubmissionWorkflowInfo"),
1747
+ :schema_element => [
1748
+ ["batchWorkflowInfos", "Glexchange::Pdws::BatchWorkflowInfo[]", [0, nil]],
1749
+ ["languageWorkflowInfos", "Glexchange::Pdws::LanguageWorkflowInfo[]", [0, nil]],
1750
+ ["phaseName", "SOAP::SOAPString"],
1751
+ ["submissionId", "SOAP::SOAPLong"],
1752
+ ["submissionName", "SOAP::SOAPString"],
1753
+ ["submissionTicket", "SOAP::SOAPString"],
1754
+ ["targetWorkflowInfos", "Glexchange::Pdws::TargetWorkflowInfo[]", [0, nil]]
1755
+ ]
1756
+ )
1757
+
1758
+ DocumentLiteralRegistry.register(
1759
+ :class => Glexchange::Pdws::WorkflowRequest,
1760
+ :schema_type => XSD::QName.new(NsXsd, "WorkflowRequest"),
1761
+ :schema_element => [
1762
+ ["batchWorkflowInfos", "Glexchange::Pdws::BatchWorkflowInfo[]", [0, nil]],
1763
+ ["languageWorkflowInfos", "Glexchange::Pdws::LanguageWorkflowInfo[]", [0, nil]],
1764
+ ["phaseName", "SOAP::SOAPString"],
1765
+ ["submissionTicket", "SOAP::SOAPString"],
1766
+ ["targetWorkflowInfos", "Glexchange::Pdws::TargetWorkflowInfo[]", [0, nil]]
1767
+ ]
1768
+ )
1769
+
1770
+ DocumentLiteralRegistry.register(
1771
+ :class => Glexchange::Pdws::WorkflowRequestTicket,
1772
+ :schema_type => XSD::QName.new(NsXsd, "WorkflowRequestTicket"),
1773
+ :schema_element => [
1774
+ ["message", "SOAP::SOAPString"],
1775
+ ["processTicket", "SOAP::SOAPString"],
1776
+ ["submissionTicket", "SOAP::SOAPString"]
1777
+ ]
1778
+ )
1779
+
1780
+ DocumentLiteralRegistry.register(
1781
+ :class => Glexchange::Pdws::DownloadActionResult,
1782
+ :schema_type => XSD::QName.new(NsXsd, "DownloadActionResult"),
1783
+ :schema_element => [
1784
+ ["message", "SOAP::SOAPString"],
1785
+ ["processingFinished", "SOAP::SOAPBoolean"],
1786
+ ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
1787
+ ]
1788
+ )
1789
+
1790
+ DocumentLiteralRegistry.register(
1791
+ :class => Glexchange::Pdws::UploadActionResult,
1792
+ :schema_type => XSD::QName.new(NsXsd, "UploadActionResult"),
1793
+ :schema_element => [
1794
+ ["messages", "SOAP::SOAPString[]", [0, nil]],
1795
+ ["processingFinished", "SOAP::SOAPBoolean"]
1796
+ ]
1797
+ )
1798
+
1799
+ DocumentLiteralRegistry.register(
1800
+ :class => Glexchange::Pdws::DownloadCollateralResult,
1801
+ :schema_type => XSD::QName.new(NsXsd, "DownloadCollateralResult"),
1802
+ :schema_element => [
1803
+ ["errorMessages", "SOAP::SOAPString[]", [0, nil]],
1804
+ ["processingFinished", "SOAP::SOAPBoolean"],
1805
+ ["repositoryItem", "Glexchange::Pdws::RepositoryItem"]
1806
+ ]
1807
+ )
1808
+
1809
+ DocumentLiteralRegistry.register(
1810
+ :class => Glexchange::Pdws::Base64Binary,
1811
+ :schema_type => XSD::QName.new(NsXmlmime, "base64Binary"),
1812
+ :schema_attribute => {
1813
+ XSD::QName.new(NsXmlmime, "contentType") => "SOAP::SOAPString"
1814
+ }
1815
+ )
1816
+
1817
+ DocumentLiteralRegistry.register(
1818
+ :class => Glexchange::Pdws::HexBinary,
1819
+ :schema_type => XSD::QName.new(NsXmlmime, "hexBinary"),
1820
+ :schema_attribute => {
1821
+ XSD::QName.new(NsXmlmime, "contentType") => "SOAP::SOAPString"
1822
+ }
1823
+ )
1824
+
1825
+ DocumentLiteralRegistry.register(
1826
+ :class => Glexchange::Pdws::CancelDocument,
1827
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "cancelDocument"),
1828
+ :schema_element => [
1829
+ ["documentTicket", "Glexchange::Pdws::DocumentTicket"]
1830
+ ]
1831
+ )
1832
+
1833
+ DocumentLiteralRegistry.register(
1834
+ :class => Glexchange::Pdws::CancelDocumentResponse,
1835
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "cancelDocumentResponse"),
1836
+ :schema_element => [
1837
+ ["v_return", ["SOAP::SOAPString", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1838
+ ]
1839
+ )
1840
+
1841
+ DocumentLiteralRegistry.register(
1842
+ :class => Glexchange::Pdws::FindByTicket,
1843
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "findByTicket"),
1844
+ :schema_element => [
1845
+ ["ticket", "SOAP::SOAPString"]
1846
+ ]
1847
+ )
1848
+
1849
+ DocumentLiteralRegistry.register(
1850
+ :class => Glexchange::Pdws::FindByTicketResponse,
1851
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "findByTicketResponse"),
1852
+ :schema_element => [
1853
+ ["v_return", ["Glexchange::Pdws::Document", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1854
+ ]
1855
+ )
1856
+
1857
+ DocumentLiteralRegistry.register(
1858
+ :class => Glexchange::Pdws::Search,
1859
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "search"),
1860
+ :schema_element => [
1861
+ ["command", "Glexchange::Pdws::DocumentSearchRequest"],
1862
+ ["info", "Glexchange::Pdws::PagedListInfo"]
1863
+ ]
1864
+ )
1865
+
1866
+ DocumentLiteralRegistry.register(
1867
+ :class => Glexchange::Pdws::SearchResponse,
1868
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "searchResponse"),
1869
+ :schema_element => [
1870
+ ["v_return", ["Glexchange::Pdws::DocumentPagedList", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1871
+ ]
1872
+ )
1873
+
1874
+ DocumentLiteralRegistry.register(
1875
+ :class => Glexchange::Pdws::SubmitDocumentWithBinaryResource,
1876
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "submitDocumentWithBinaryResource"),
1877
+ :schema_element => [
1878
+ ["documentInfo", "Glexchange::Pdws::DocumentInfo"],
1879
+ ["resourceInfo", "Glexchange::Pdws::ResourceInfo"],
1880
+ ["data", "Glexchange::Pdws::Base64Binary"]
1881
+ ]
1882
+ )
1883
+
1884
+ DocumentLiteralRegistry.register(
1885
+ :class => Glexchange::Pdws::SubmitDocumentWithBinaryResourceResponse,
1886
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "submitDocumentWithBinaryResourceResponse"),
1887
+ :schema_element => [
1888
+ ["v_return", ["Glexchange::Pdws::DocumentTicket", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1889
+ ]
1890
+ )
1891
+
1892
+ DocumentLiteralRegistry.register(
1893
+ :class => Glexchange::Pdws::SubmitDocumentWithTextResource,
1894
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "submitDocumentWithTextResource"),
1895
+ :schema_element => [
1896
+ ["documentInfo", "Glexchange::Pdws::DocumentInfo"],
1897
+ ["resourceInfo", "Glexchange::Pdws::ResourceInfo"],
1898
+ ["data", "SOAP::SOAPString"]
1899
+ ]
1900
+ )
1901
+
1902
+ DocumentLiteralRegistry.register(
1903
+ :class => Glexchange::Pdws::SubmitDocumentWithTextResourceResponse,
1904
+ :schema_name => XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "submitDocumentWithTextResourceResponse"),
1905
+ :schema_element => [
1906
+ ["v_return", ["Glexchange::Pdws::DocumentTicket", XSD::QName.new(NsImplServicesServiceWsProjectdirectorGs4trOrg, "return")]]
1907
+ ]
1908
+ )
1909
+ end
1910
+
1911
+ end; end