glexchange 4.18.2 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/lib/glexchange/model/Document.rb +1 -1
  3. data/lib/glexchange/model/ReferenceDocument.rb +1 -1
  4. data/lib/glexchange/model/Submission.rb +5 -0
  5. data/lib/glexchange/pdws/{DocumentService_4180.rb → DocumentService_580.rb} +16 -387
  6. data/lib/glexchange/pdws/DocumentService_580Driver.rb +77 -0
  7. data/lib/glexchange/pdws/{DocumentService_4180MappingRegistry.rb → DocumentService_580MappingRegistry.rb} +1546 -1911
  8. data/lib/glexchange/pdws/{ProjectService_4180.rb → ProjectService_580.rb} +16 -356
  9. data/lib/glexchange/pdws/ProjectService_580Driver.rb +77 -0
  10. data/lib/glexchange/pdws/{ProjectService_4180MappingRegistry.rb → ProjectService_580MappingRegistry.rb} +1542 -1890
  11. data/lib/glexchange/pdws/SubmissionService_580.rb +1776 -0
  12. data/lib/glexchange/pdws/SubmissionService_580Driver.rb +165 -0
  13. data/lib/glexchange/pdws/SubmissionService_580MappingRegistry.rb +1732 -0
  14. data/lib/glexchange/pdws/TargetService_580.rb +1747 -0
  15. data/lib/glexchange/pdws/TargetService_580Driver.rb +181 -0
  16. data/lib/glexchange/pdws/TargetService_580MappingRegistry.rb +1763 -0
  17. data/lib/glexchange/pdws/{UserProfileService_4180.rb → UserProfileService_580.rb} +16 -357
  18. data/lib/glexchange/pdws/UserProfileService_580Driver.rb +84 -0
  19. data/lib/glexchange/pdws/{UserProfileService_4180MappingRegistry.rb → UserProfileService_580MappingRegistry.rb} +1551 -1899
  20. data/lib/glexchange/pdws/{WorkflowService_4180.rb → WorkflowService_580.rb} +15 -356
  21. data/lib/glexchange/pdws/WorkflowService_580Driver.rb +117 -0
  22. data/lib/glexchange/pdws/{WorkflowService_4180MappingRegistry.rb → WorkflowService_580MappingRegistry.rb} +1623 -1971
  23. data/lib/glexchange.rb +30 -12
  24. metadata +22 -22
  25. data/lib/glexchange/pdws/DocumentService_4180Driver.rb +0 -83
  26. data/lib/glexchange/pdws/ProjectService_4180Driver.rb +0 -75
  27. data/lib/glexchange/pdws/SubmissionService_4180.rb +0 -2138
  28. data/lib/glexchange/pdws/SubmissionService_4180Driver.rb +0 -171
  29. data/lib/glexchange/pdws/SubmissionService_4180MappingRegistry.rb +0 -2095
  30. data/lib/glexchange/pdws/TargetService_4180.rb +0 -2115
  31. data/lib/glexchange/pdws/TargetService_4180Driver.rb +0 -187
  32. data/lib/glexchange/pdws/TargetService_4180MappingRegistry.rb +0 -2128
  33. data/lib/glexchange/pdws/UserProfileService_4180Driver.rb +0 -82
  34. data/lib/glexchange/pdws/WorkflowService_4180Driver.rb +0 -115
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f1bc70a6bd32c406bb7d2d0ac0a67c7fe6953be
4
- data.tar.gz: 301c369520979c3afbd211b5d50fdc59e154faf3
3
+ metadata.gz: 431f48d44b8a69380415e0fcc99f925f39868b03
4
+ data.tar.gz: 64c9f4e7f7ed2d38272b0e098fbea5a92fbc193c
5
5
  SHA512:
6
- metadata.gz: 26b6cd39236411aa868b8feec61c480745f3a8aa5d11d20f2b4c9e63537a6377de8f6ad72132b1bac30e26a258367c6eeee37e27bf4d4ec0a7e1a5aec9d829f0
7
- data.tar.gz: afdf91f95912d7afac4684fee66761f526a783174b3f78f6e3ad87625926093e7b0f104b221250c1fba026e44af0a0c487c32d4f50a3f5b25b3d4e3fa466f728
6
+ metadata.gz: fc59afe2db2378339d6f89a9feaf2e7d4d5534ad878005043144db4207b90f63b20e2f575d61b2ee0717df6a041fb4eb2f15054903515281970b11f36a7aa351
7
+ data.tar.gz: b7a1efa7be5aba14f23dedf7d5bf44729a01df65f0d73bc31bc70c15525876cc9730afaedcfde3c56601155c42af092005b82a8001b798df656695fbfa175ea1
@@ -1,4 +1,4 @@
1
- require 'glexchange/pdws/DocumentService_4180'
1
+ require 'glexchange/pdws/DocumentService_580'
2
2
  module Glexchange
3
3
  module Model
4
4
  class PDDocument
@@ -1,4 +1,4 @@
1
- require 'glexchange/pdws/SubmissionService_4180'
1
+ require 'glexchange/pdws/SubmissionService_580'
2
2
  module Glexchange
3
3
  module Model
4
4
  class PDReferenceDocument
@@ -15,6 +15,11 @@ module Glexchange
15
15
  attr_accessor :submitter
16
16
  attr_accessor :ticket
17
17
  attr_accessor :workflow
18
+ attr_accessor :adaptorName
19
+ attr_accessor :adaptorVersion
20
+ attr_accessor :clientVersion
21
+ attr_accessor :technologyProduct
22
+
18
23
  end
19
24
  end
20
25
  end
@@ -1,7 +1,8 @@
1
+ # encoding: UTF-8
2
+ # Generated by wsdl2ruby (SOAP4R-NG/2.0.3)
1
3
  require 'xsd/qname'
2
4
 
3
- module Glexchange;
4
- module Pdws
5
+ module Glexchange; module Pdws
5
6
 
6
7
 
7
8
  # {http://dto.model.projectdirector.gs4tr.org/xsd}Notification
@@ -172,41 +173,6 @@ class DocumentInfo
172
173
  end
173
174
  end
174
175
 
175
- # {http://dto.model.projectdirector.gs4tr.org/xsd}DocumentPagedList
176
- # elements - Glexchange::Pdws::Document
177
- # pagedListInfo - Glexchange::Pdws::PagedListInfo
178
- # tasks - Glexchange::Pdws::Task
179
- # totalCount - SOAP::SOAPLong
180
- class DocumentPagedList
181
- attr_accessor :elements
182
- attr_accessor :pagedListInfo
183
- attr_accessor :tasks
184
- attr_accessor :totalCount
185
-
186
- def initialize(elements = [], pagedListInfo = nil, tasks = [], totalCount = nil)
187
- @elements = elements
188
- @pagedListInfo = pagedListInfo
189
- @tasks = tasks
190
- @totalCount = totalCount
191
- end
192
- end
193
-
194
- # {http://dto.model.projectdirector.gs4tr.org/xsd}DocumentSearchRequest
195
- # projectTickets - SOAP::SOAPString
196
- # sourceLocaleId - SOAP::SOAPString
197
- # submissionTicket - SOAP::SOAPString
198
- class DocumentSearchRequest
199
- attr_accessor :projectTickets
200
- attr_accessor :sourceLocaleId
201
- attr_accessor :submissionTicket
202
-
203
- def initialize(projectTickets = [], sourceLocaleId = nil, submissionTicket = nil)
204
- @projectTickets = projectTickets
205
- @sourceLocaleId = sourceLocaleId
206
- @submissionTicket = submissionTicket
207
- end
208
- end
209
-
210
176
  # {http://dto.model.projectdirector.gs4tr.org/xsd}DocumentTicket
211
177
  # submissionTicket - SOAP::SOAPString
212
178
  # ticketId - SOAP::SOAPString
@@ -264,62 +230,6 @@ class FileFormatProfile
264
230
  end
265
231
  end
266
232
 
267
- # {http://dto.model.projectdirector.gs4tr.org/xsd}FileFormatProgressData
268
- # dateCompleted - Glexchange::Pdws::Date
269
- # fileCount - SOAP::SOAPLong
270
- # fileFormatName - SOAP::SOAPString
271
- # fileProgressData - Glexchange::Pdws::FileProgressData
272
- # jobTicket - SOAP::SOAPString
273
- # workflowDueDate - Glexchange::Pdws::Date
274
- # workflowStatus - SOAP::SOAPString
275
- class FileFormatProgressData
276
- attr_accessor :dateCompleted
277
- attr_accessor :fileCount
278
- attr_accessor :fileFormatName
279
- attr_accessor :fileProgressData
280
- attr_accessor :jobTicket
281
- attr_accessor :workflowDueDate
282
- attr_accessor :workflowStatus
283
-
284
- def initialize(dateCompleted = nil, fileCount = nil, fileFormatName = nil, fileProgressData = nil, jobTicket = nil, workflowDueDate = nil, workflowStatus = nil)
285
- @dateCompleted = dateCompleted
286
- @fileCount = fileCount
287
- @fileFormatName = fileFormatName
288
- @fileProgressData = fileProgressData
289
- @jobTicket = jobTicket
290
- @workflowDueDate = workflowDueDate
291
- @workflowStatus = workflowStatus
292
- end
293
- end
294
-
295
- # {http://dto.model.projectdirector.gs4tr.org/xsd}FileProgressData
296
- # numberOfAvailableFiles - SOAP::SOAPInt
297
- # numberOfCanceledFiles - SOAP::SOAPInt
298
- # numberOfCompletedFiles - SOAP::SOAPInt
299
- # numberOfDeliveredFiles - SOAP::SOAPInt
300
- # numberOfFailedFiles - SOAP::SOAPInt
301
- # numberOfInProcessFiles - SOAP::SOAPInt
302
- # overallProgressPercent - SOAP::SOAPInt
303
- class FileProgressData
304
- attr_accessor :numberOfAvailableFiles
305
- attr_accessor :numberOfCanceledFiles
306
- attr_accessor :numberOfCompletedFiles
307
- attr_accessor :numberOfDeliveredFiles
308
- attr_accessor :numberOfFailedFiles
309
- attr_accessor :numberOfInProcessFiles
310
- attr_accessor :overallProgressPercent
311
-
312
- def initialize(numberOfAvailableFiles = nil, numberOfCanceledFiles = nil, numberOfCompletedFiles = nil, numberOfDeliveredFiles = nil, numberOfFailedFiles = nil, numberOfInProcessFiles = nil, overallProgressPercent = nil)
313
- @numberOfAvailableFiles = numberOfAvailableFiles
314
- @numberOfCanceledFiles = numberOfCanceledFiles
315
- @numberOfCompletedFiles = numberOfCompletedFiles
316
- @numberOfDeliveredFiles = numberOfDeliveredFiles
317
- @numberOfFailedFiles = numberOfFailedFiles
318
- @numberOfInProcessFiles = numberOfInProcessFiles
319
- @overallProgressPercent = overallProgressPercent
320
- end
321
- end
322
-
323
233
  # {http://dto.model.projectdirector.gs4tr.org/xsd}FuzzyTmStatistics
324
234
  # fuzzyName - SOAP::SOAPString
325
235
  # wordCount - SOAP::SOAPInt
@@ -333,16 +243,6 @@ class FuzzyTmStatistics
333
243
  end
334
244
  end
335
245
 
336
- # {http://dto.model.projectdirector.gs4tr.org/xsd}ItemFolderEnum
337
- # value - SOAP::SOAPInt
338
- class ItemFolderEnum
339
- attr_accessor :value
340
-
341
- def initialize(value = nil)
342
- @value = value
343
- end
344
- end
345
-
346
246
  # {http://dto.model.projectdirector.gs4tr.org/xsd}ItemStatusEnum
347
247
  # name - SOAP::SOAPString
348
248
  # value - SOAP::SOAPInt
@@ -395,37 +295,6 @@ class LanguageDirection
395
295
  end
396
296
  end
397
297
 
398
- # {http://dto.model.projectdirector.gs4tr.org/xsd}LanguageDirectionModel
399
- # dateCompleted - Glexchange::Pdws::Date
400
- # fileCount - SOAP::SOAPLong
401
- # fileFormatProgressData - Glexchange::Pdws::FileFormatProgressData
402
- # fileProgress - Glexchange::Pdws::FileProgressData
403
- # sourceLanguage - Glexchange::Pdws::Language
404
- # targetLanguage - Glexchange::Pdws::Language
405
- # workflowDueDate - Glexchange::Pdws::Date
406
- # workflowStatus - SOAP::SOAPString
407
- class LanguageDirectionModel
408
- attr_accessor :dateCompleted
409
- attr_accessor :fileCount
410
- attr_accessor :fileFormatProgressData
411
- attr_accessor :fileProgress
412
- attr_accessor :sourceLanguage
413
- attr_accessor :targetLanguage
414
- attr_accessor :workflowDueDate
415
- attr_accessor :workflowStatus
416
-
417
- def initialize(dateCompleted = nil, fileCount = nil, fileFormatProgressData = [], fileProgress = nil, sourceLanguage = nil, targetLanguage = nil, workflowDueDate = nil, workflowStatus = nil)
418
- @dateCompleted = dateCompleted
419
- @fileCount = fileCount
420
- @fileFormatProgressData = fileFormatProgressData
421
- @fileProgress = fileProgress
422
- @sourceLanguage = sourceLanguage
423
- @targetLanguage = targetLanguage
424
- @workflowDueDate = workflowDueDate
425
- @workflowStatus = workflowStatus
426
- end
427
- end
428
-
429
298
  # {http://dto.model.projectdirector.gs4tr.org/xsd}LanguagePhaseInfo
430
299
  # phaseStartDate - Glexchange::Pdws::Date
431
300
  # sourceFileList - SOAP::SOAPString
@@ -630,19 +499,6 @@ class ProjectInfo
630
499
  end
631
500
  end
632
501
 
633
- # {http://dto.model.projectdirector.gs4tr.org/xsd}ProjectLanguage
634
- # customLocaleCode - SOAP::SOAPString
635
- # localeCode - SOAP::SOAPString
636
- class ProjectLanguage
637
- attr_accessor :customLocaleCode
638
- attr_accessor :localeCode
639
-
640
- def initialize(customLocaleCode = nil, localeCode = nil)
641
- @customLocaleCode = customLocaleCode
642
- @localeCode = localeCode
643
- end
644
- end
645
-
646
502
  # {http://dto.model.projectdirector.gs4tr.org/xsd}ProjectLanguageDirection
647
503
  # sourceLanguage - Glexchange::Pdws::Language
648
504
  # targetLanguage - Glexchange::Pdws::Language
@@ -806,10 +662,13 @@ class Submission
806
662
  end
807
663
 
808
664
  # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionInfo
665
+ # adaptorName - SOAP::SOAPString
666
+ # adaptorVersion - SOAP::SOAPString
809
667
  # additionalCosts - SOAP::SOAPString
810
668
  # autoStartChilds - SOAP::SOAPBoolean
811
669
  # claimScope - Glexchange::Pdws::ClaimScopeEnum
812
670
  # clientIdentifier - SOAP::SOAPString
671
+ # clientVersion - SOAP::SOAPString
813
672
  # dateRequested - Glexchange::Pdws::Date
814
673
  # internalNotes - SOAP::SOAPString
815
674
  # metadata - Glexchange::Pdws::Metadata
@@ -823,12 +682,16 @@ end
823
682
  # submissionBackground - SOAP::SOAPString
824
683
  # submissionCustomFields - Glexchange::Pdws::SubmissionCustomFields
825
684
  # submitters - SOAP::SOAPString
685
+ # technologyProduct - SOAP::SOAPString
826
686
  # workflowDefinitionTicket - SOAP::SOAPString
827
687
  class SubmissionInfo
688
+ attr_accessor :adaptorName
689
+ attr_accessor :adaptorVersion
828
690
  attr_accessor :additionalCosts
829
691
  attr_accessor :autoStartChilds
830
692
  attr_accessor :claimScope
831
693
  attr_accessor :clientIdentifier
694
+ attr_accessor :clientVersion
832
695
  attr_accessor :dateRequested
833
696
  attr_accessor :internalNotes
834
697
  attr_accessor :metadata
@@ -842,13 +705,17 @@ class SubmissionInfo
842
705
  attr_accessor :submissionBackground
843
706
  attr_accessor :submissionCustomFields
844
707
  attr_accessor :submitters
708
+ attr_accessor :technologyProduct
845
709
  attr_accessor :workflowDefinitionTicket
846
710
 
847
- def initialize(additionalCosts = nil, autoStartChilds = nil, claimScope = nil, clientIdentifier = nil, dateRequested = nil, internalNotes = nil, metadata = [], name = nil, officeName = nil, paClientTicket = nil, paJobNumber = nil, priority = nil, projectTicket = nil, revenue = nil, submissionBackground = nil, submissionCustomFields = [], submitters = [], workflowDefinitionTicket = nil)
711
+ def initialize(adaptorName = nil, adaptorVersion = nil, additionalCosts = nil, autoStartChilds = nil, claimScope = nil, clientIdentifier = nil, clientVersion = nil, dateRequested = nil, internalNotes = nil, metadata = [], name = nil, officeName = nil, paClientTicket = nil, paJobNumber = nil, priority = nil, projectTicket = nil, revenue = nil, submissionBackground = nil, submissionCustomFields = [], submitters = [], technologyProduct = nil, workflowDefinitionTicket = nil)
712
+ @adaptorName = adaptorName
713
+ @adaptorVersion = adaptorVersion
848
714
  @additionalCosts = additionalCosts
849
715
  @autoStartChilds = autoStartChilds
850
716
  @claimScope = claimScope
851
717
  @clientIdentifier = clientIdentifier
718
+ @clientVersion = clientVersion
852
719
  @dateRequested = dateRequested
853
720
  @internalNotes = internalNotes
854
721
  @metadata = metadata
@@ -862,182 +729,11 @@ class SubmissionInfo
862
729
  @submissionBackground = submissionBackground
863
730
  @submissionCustomFields = submissionCustomFields
864
731
  @submitters = submitters
732
+ @technologyProduct = technologyProduct
865
733
  @workflowDefinitionTicket = workflowDefinitionTicket
866
734
  end
867
735
  end
868
736
 
869
- # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionPagedList
870
- # elements - Glexchange::Pdws::Submission
871
- # pagedListInfo - Glexchange::Pdws::PagedListInfo
872
- # tasks - Glexchange::Pdws::Task
873
- # totalCount - SOAP::SOAPLong
874
- class SubmissionPagedList
875
- attr_accessor :elements
876
- attr_accessor :pagedListInfo
877
- attr_accessor :tasks
878
- attr_accessor :totalCount
879
-
880
- def initialize(elements = [], pagedListInfo = nil, tasks = [], totalCount = nil)
881
- @elements = elements
882
- @pagedListInfo = pagedListInfo
883
- @tasks = tasks
884
- @totalCount = totalCount
885
- end
886
- end
887
-
888
- # {http://dto.model.projectdirector.gs4tr.org/xsd}SimpleSubmissionSearchModel
889
- # alerts - Glexchange::Pdws::Notification
890
- # availableTasks - SOAP::SOAPLong
891
- # budgetStatus - SOAP::SOAPInt
892
- # claimScope - Glexchange::Pdws::ClaimScopeEnum
893
- # customFields - SOAP::SOAPString
894
- # date - Glexchange::Pdws::Date
895
- # dateArchived - Glexchange::Pdws::Date
896
- # dateCompleted - Glexchange::Pdws::Date
897
- # dateStarted - Glexchange::Pdws::Date
898
- # dueDate - Glexchange::Pdws::Date
899
- # fileCount - SOAP::SOAPLong
900
- # fileProgress - Glexchange::Pdws::FileProgressData
901
- # gate - SOAP::SOAPByte
902
- # id - SOAP::SOAPString
903
- # instructions - SOAP::SOAPString
904
- # officeName - SOAP::SOAPString
905
- # owner - Glexchange::Pdws::UserData
906
- # paClientName - SOAP::SOAPString
907
- # parentSubmissionName - SOAP::SOAPString
908
- # parentTicket - SOAP::SOAPString
909
- # pmNotes - SOAP::SOAPString
910
- # priority - SOAP::SOAPString
911
- # projectName - SOAP::SOAPString
912
- # projectTicket - SOAP::SOAPString
913
- # quote - SOAP::SOAPByte
914
- # reserved - SOAP::SOAPBoolean
915
- # sourceLanguage - SOAP::SOAPString
916
- # status - Glexchange::Pdws::ItemStatusEnum
917
- # submissionBackground - SOAP::SOAPString
918
- # submissionName - SOAP::SOAPString
919
- # submitterFullName - Glexchange::Pdws::UserData
920
- # ticket - SOAP::SOAPString
921
- # wordCount - SOAP::SOAPLong
922
- # workflowDueDate - Glexchange::Pdws::Date
923
- # workflowStatus - SOAP::SOAPString
924
- class SimpleSubmissionSearchModel
925
- attr_accessor :alerts
926
- attr_accessor :availableTasks
927
- attr_accessor :budgetStatus
928
- attr_accessor :claimScope
929
- attr_accessor :customFields
930
- attr_accessor :date
931
- attr_accessor :dateArchived
932
- attr_accessor :dateCompleted
933
- attr_accessor :dateStarted
934
- attr_accessor :dueDate
935
- attr_accessor :fileCount
936
- attr_accessor :fileProgress
937
- attr_accessor :gate
938
- attr_accessor :id
939
- attr_accessor :instructions
940
- attr_accessor :officeName
941
- attr_accessor :owner
942
- attr_accessor :paClientName
943
- attr_accessor :parentSubmissionName
944
- attr_accessor :parentTicket
945
- attr_accessor :pmNotes
946
- attr_accessor :priority
947
- attr_accessor :projectName
948
- attr_accessor :projectTicket
949
- attr_accessor :quote
950
- attr_accessor :reserved
951
- attr_accessor :sourceLanguage
952
- attr_accessor :status
953
- attr_accessor :submissionBackground
954
- attr_accessor :submissionName
955
- attr_accessor :submitterFullName
956
- attr_accessor :ticket
957
- attr_accessor :wordCount
958
- attr_accessor :workflowDueDate
959
- attr_accessor :workflowStatus
960
-
961
- def initialize(alerts = [], availableTasks = nil, budgetStatus = nil, claimScope = nil, customFields = [], date = nil, dateArchived = nil, dateCompleted = nil, dateStarted = nil, dueDate = nil, fileCount = nil, fileProgress = nil, gate = nil, id = nil, instructions = nil, officeName = nil, owner = [], paClientName = nil, parentSubmissionName = nil, parentTicket = nil, pmNotes = nil, priority = nil, projectName = nil, projectTicket = nil, quote = nil, reserved = nil, sourceLanguage = nil, status = nil, submissionBackground = nil, submissionName = nil, submitterFullName = [], ticket = nil, wordCount = nil, workflowDueDate = nil, workflowStatus = nil)
962
- @alerts = alerts
963
- @availableTasks = availableTasks
964
- @budgetStatus = budgetStatus
965
- @claimScope = claimScope
966
- @customFields = customFields
967
- @date = date
968
- @dateArchived = dateArchived
969
- @dateCompleted = dateCompleted
970
- @dateStarted = dateStarted
971
- @dueDate = dueDate
972
- @fileCount = fileCount
973
- @fileProgress = fileProgress
974
- @gate = gate
975
- @id = id
976
- @instructions = instructions
977
- @officeName = officeName
978
- @owner = owner
979
- @paClientName = paClientName
980
- @parentSubmissionName = parentSubmissionName
981
- @parentTicket = parentTicket
982
- @pmNotes = pmNotes
983
- @priority = priority
984
- @projectName = projectName
985
- @projectTicket = projectTicket
986
- @quote = quote
987
- @reserved = reserved
988
- @sourceLanguage = sourceLanguage
989
- @status = status
990
- @submissionBackground = submissionBackground
991
- @submissionName = submissionName
992
- @submitterFullName = submitterFullName
993
- @ticket = ticket
994
- @wordCount = wordCount
995
- @workflowDueDate = workflowDueDate
996
- @workflowStatus = workflowStatus
997
- end
998
- end
999
-
1000
- # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionSearchModelPagedList
1001
- # elements - Glexchange::Pdws::SimpleSubmissionSearchModel
1002
- # pagedListInfo - Glexchange::Pdws::PagedListInfo
1003
- # tasks - Glexchange::Pdws::Task
1004
- # totalCount - SOAP::SOAPLong
1005
- class SubmissionSearchModelPagedList
1006
- attr_accessor :elements
1007
- attr_accessor :pagedListInfo
1008
- attr_accessor :tasks
1009
- attr_accessor :totalCount
1010
-
1011
- def initialize(elements = [], pagedListInfo = nil, tasks = [], totalCount = nil)
1012
- @elements = elements
1013
- @pagedListInfo = pagedListInfo
1014
- @tasks = tasks
1015
- @totalCount = totalCount
1016
- end
1017
- end
1018
-
1019
- # {http://dto.model.projectdirector.gs4tr.org/xsd}SubmissionSearchRequest
1020
- # folder - Glexchange::Pdws::ItemFolderEnum
1021
- # projectTickets - SOAP::SOAPString
1022
- # submissionDate - Glexchange::Pdws::Date
1023
- # submissionDueDate - Glexchange::Pdws::Date
1024
- # submissionName - SOAP::SOAPString
1025
- class SubmissionSearchRequest
1026
- attr_accessor :folder
1027
- attr_accessor :projectTickets
1028
- attr_accessor :submissionDate
1029
- attr_accessor :submissionDueDate
1030
- attr_accessor :submissionName
1031
-
1032
- def initialize(folder = nil, projectTickets = [], submissionDate = nil, submissionDueDate = nil, submissionName = nil)
1033
- @folder = folder
1034
- @projectTickets = projectTickets
1035
- @submissionDate = submissionDate
1036
- @submissionDueDate = submissionDueDate
1037
- @submissionName = submissionName
1038
- end
1039
- end
1040
-
1041
737
  # {http://dto.model.projectdirector.gs4tr.org/xsd}Target
1042
738
  # availableTasks - SOAP::SOAPLong
1043
739
  # dateCompleted - Glexchange::Pdws::Date
@@ -1155,31 +851,6 @@ class TargetPagedList
1155
851
  end
1156
852
  end
1157
853
 
1158
- # {http://dto.model.projectdirector.gs4tr.org/xsd}TargetSearchRequest
1159
- # dateCreated - Glexchange::Pdws::Date
1160
- # folder - Glexchange::Pdws::ItemFolderEnum
1161
- # projectTickets - SOAP::SOAPString
1162
- # sourceLocaleId - SOAP::SOAPString
1163
- # submissionTicket - SOAP::SOAPString
1164
- # targetLocaleId - SOAP::SOAPString
1165
- class TargetSearchRequest
1166
- attr_accessor :dateCreated
1167
- attr_accessor :folder
1168
- attr_accessor :projectTickets
1169
- attr_accessor :sourceLocaleId
1170
- attr_accessor :submissionTicket
1171
- attr_accessor :targetLocaleId
1172
-
1173
- def initialize(dateCreated = nil, folder = nil, projectTickets = [], sourceLocaleId = nil, submissionTicket = nil, targetLocaleId = nil)
1174
- @dateCreated = dateCreated
1175
- @folder = folder
1176
- @projectTickets = projectTickets
1177
- @sourceLocaleId = sourceLocaleId
1178
- @submissionTicket = submissionTicket
1179
- @targetLocaleId = targetLocaleId
1180
- end
1181
- end
1182
-
1183
854
  # {http://dto.model.projectdirector.gs4tr.org/xsd}Task
1184
855
  # groupName - SOAP::SOAPString
1185
856
  # selectStyle - SOAP::SOAPInt
@@ -1303,19 +974,6 @@ class WorkflowDefinition
1303
974
  end
1304
975
  end
1305
976
 
1306
- # {http://dto.model.projectdirector.gs4tr.org/xsd}UserData
1307
- # email - SOAP::SOAPString
1308
- # name - SOAP::SOAPString
1309
- class UserData
1310
- attr_accessor :email
1311
- attr_accessor :name
1312
-
1313
- def initialize(email = nil, name = nil)
1314
- @email = email
1315
- @name = name
1316
- end
1317
- end
1318
-
1319
977
  # {http://dto.model.projectdirector.gs4tr.org/xsd}UserInfo
1320
978
  # accountLocked - SOAP::SOAPBoolean
1321
979
  # accountNonExpired - SOAP::SOAPBoolean
@@ -1792,35 +1450,6 @@ class FindByTicketResponse
1792
1450
  end
1793
1451
  end
1794
1452
 
1795
- # {http://impl.services.service.ws.projectdirector.gs4tr.org}search
1796
- # command - Glexchange::Pdws::DocumentSearchRequest
1797
- # info - Glexchange::Pdws::PagedListInfo
1798
- class Search
1799
- attr_accessor :command
1800
- attr_accessor :info
1801
-
1802
- def initialize(command = nil, info = nil)
1803
- @command = command
1804
- @info = info
1805
- end
1806
- end
1807
-
1808
- # {http://impl.services.service.ws.projectdirector.gs4tr.org}searchResponse
1809
- # m_return - Glexchange::Pdws::DocumentPagedList
1810
- class SearchResponse
1811
- def m_return
1812
- @v_return
1813
- end
1814
-
1815
- def m_return=(value)
1816
- @v_return = value
1817
- end
1818
-
1819
- def initialize(v_return = nil)
1820
- @v_return = v_return
1821
- end
1822
- end
1823
-
1824
1453
  # {http://impl.services.service.ws.projectdirector.gs4tr.org}submitDocumentWithBinaryResource
1825
1454
  # documentInfo - Glexchange::Pdws::DocumentInfo
1826
1455
  # resourceInfo - Glexchange::Pdws::ResourceInfo
@@ -0,0 +1,77 @@
1
+ # encoding: UTF-8
2
+ # Generated by wsdl2ruby (SOAP4R-NG/2.0.3)
3
+ require_relative 'DocumentService_580.rb'
4
+ require_relative 'DocumentService_580MappingRegistry.rb'
5
+ require 'soap/rpc/driver'
6
+
7
+ module Glexchange::Pdws
8
+
9
+ class DocumentServicePortType < ::SOAP::RPC::Driver
10
+ DefaultEndpointUrl = "http://localhost/services/DocumentService_580.DocumentServiceHttpSoap11Endpoint"
11
+
12
+ Methods = [
13
+ [ "urn:findByTicket",
14
+ "findByTicket",
15
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://impl.services.service.ws.projectdirector.gs4tr.org", "findByTicket"]],
16
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://impl.services.service.ws.projectdirector.gs4tr.org", "findByTicketResponse"]] ],
17
+ { :request_style => :document, :request_use => :literal,
18
+ :response_style => :document, :response_use => :literal,
19
+ :faults => {} }
20
+ ],
21
+ [ "urn:submitDocumentWithTextResource",
22
+ "submitDocumentWithTextResource",
23
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://impl.services.service.ws.projectdirector.gs4tr.org", "submitDocumentWithTextResource"]],
24
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://impl.services.service.ws.projectdirector.gs4tr.org", "submitDocumentWithTextResourceResponse"]] ],
25
+ { :request_style => :document, :request_use => :literal,
26
+ :response_style => :document, :response_use => :literal,
27
+ :faults => {} }
28
+ ],
29
+ [ "urn:submitDocumentWithBinaryResource",
30
+ "submitDocumentWithBinaryResource",
31
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://impl.services.service.ws.projectdirector.gs4tr.org", "submitDocumentWithBinaryResource"]],
32
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://impl.services.service.ws.projectdirector.gs4tr.org", "submitDocumentWithBinaryResourceResponse"]] ],
33
+ { :request_style => :document, :request_use => :literal,
34
+ :response_style => :document, :response_use => :literal,
35
+ :faults => {} }
36
+ ],
37
+ [ "urn:cancelDocument",
38
+ "cancelDocument",
39
+ [ [:in, "parameters", ["::SOAP::SOAPElement", "http://impl.services.service.ws.projectdirector.gs4tr.org", "cancelDocument"]],
40
+ [:out, "parameters", ["::SOAP::SOAPElement", "http://impl.services.service.ws.projectdirector.gs4tr.org", "cancelDocumentResponse"]] ],
41
+ { :request_style => :document, :request_use => :literal,
42
+ :response_style => :document, :response_use => :literal,
43
+ :faults => {} }
44
+ ]
45
+ ]
46
+
47
+ def initialize(endpoint_url = nil)
48
+ endpoint_url ||= DefaultEndpointUrl
49
+ super(endpoint_url, nil)
50
+ self.mapping_registry = DocumentMappingRegistry::DocumentEncodedRegistry
51
+ self.literal_mapping_registry = DocumentMappingRegistry::DocumentLiteralRegistry
52
+ init_methods
53
+ end
54
+
55
+ private
56
+
57
+ def init_methods
58
+ Methods.each do |definitions|
59
+ opt = definitions.last
60
+ if opt[:request_style] == :document
61
+ add_document_operation(*definitions)
62
+ else
63
+ add_rpc_operation(*definitions)
64
+ qname = definitions[0]
65
+ name = definitions[2]
66
+ if qname.name != name and qname.name.capitalize == name.capitalize
67
+ ::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
68
+ __send__(name, *arg)
69
+ end
70
+ end
71
+ end
72
+ end
73
+ end
74
+ end
75
+
76
+
77
+ end