-
Notifications
You must be signed in to change notification settings - Fork 1
/
api.h
2178 lines (1719 loc) · 91.1 KB
/
api.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Reminder: Modify typemap.dat to customize the header file generated by wsdl2h
/* api.h
Generated by wsdl2h 1.2.17 from api.wsdl and typemap.dat
2016-03-11 10:04:19 GMT
DO NOT INCLUDE THIS FILE DIRECTLY INTO YOUR PROJECT BUILDS
USE THE soapcpp2-GENERATED SOURCE CODE FILES FOR YOUR PROJECT BUILDS
gSOAP XML Web services tools.
Copyright (C) 2001-2010 Robert van Engelen, Genivia Inc. All Rights Reserved.
Part of this software is released under one of the following licenses:
GPL or Genivia's license for commercial use.
*/
/** @page page_notes Usage Notes
NOTE:
- Run soapcpp2 on api.h to generate the SOAP/XML processing logic.
Use soapcpp2 option -I to specify paths for #import
To build with STL, 'stlvector.h' is imported from 'import' dir in package.
Use soapcpp2 option -i to generate improved proxy and server classes.
- Use wsdl2h options -c and -s to generate pure C code or C++ code without STL.
- Use 'typemap.dat' to control namespace bindings and type mappings.
It is strongly recommended to customize the names of the namespace prefixes
generated by wsdl2h. To do so, modify the prefix bindings in the Namespaces
section below and add the modified lines to 'typemap.dat' to rerun wsdl2h.
- Use Doxygen (www.doxygen.org) on this file to generate documentation.
- Use wsdl2h options -nname and -Nname to globally rename the prefix 'ns'.
- Use wsdl2h option -d to enable DOM support for xsd:anyType.
- Use wsdl2h option -g to auto-generate readers and writers for root elements.
- Struct/class members serialized as XML attributes are annotated with a '@'.
- Struct/class members that have a special role are annotated with a '$'.
WARNING:
DO NOT INCLUDE THIS FILE DIRECTLY INTO YOUR PROJECT BUILDS.
USE THE SOURCE CODE FILES GENERATED BY soapcpp2 FOR YOUR PROJECT BUILDS:
THE soapStub.h FILE CONTAINS THIS CONTENT WITHOUT ANNOTATIONS.
LICENSE:
@verbatim
--------------------------------------------------------------------------------
gSOAP XML Web services tools
Copyright (C) 2000-2010, Robert van Engelen, Genivia Inc. All Rights Reserved.
This software is released under one of the following two licenses:
1) GPL or 2) Genivia's license for commercial use.
--------------------------------------------------------------------------------
1) GPL license.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA
Author contact information:
--------------------------------------------------------------------------------
2) A commercial-use license is available from Genivia, Inc., [email protected]
--------------------------------------------------------------------------------
@endverbatim
*/
//gsoapopt w
/******************************************************************************\
* *
* Definitions *
* http://france-life-imaging.fr/api *
* *
\******************************************************************************/
/******************************************************************************\
* *
* Import *
* *
\******************************************************************************/
// STL vector containers (use option -s to remove STL dependency)
#import "stlvector.h"
/******************************************************************************\
* *
* Schema Namespaces *
* *
\******************************************************************************/
/* NOTE:
It is strongly recommended to customize the names of the namespace prefixes
generated by wsdl2h. To do so, modify the prefix bindings below and add the
modified lines to typemap.dat to rerun wsdl2h:
api = "http://france-life-imaging.fr/api"
*/
#define SOAP_NAMESPACE_OF_api "http://france-life-imaging.fr/api"
//gsoap api schema namespace: http://france-life-imaging.fr/api
//gsoap api schema form: unqualified
/******************************************************************************\
* *
* Built-in Schema Types and Top-Level Elements and Attributes *
* *
\******************************************************************************/
/******************************************************************************\
* *
* Forward Declarations *
* *
\******************************************************************************/
// Forward declaration of class api__authenticateSession.
class api__authenticateSession;
// Forward declaration of class api__authenticateSessionResponse.
class api__authenticateSessionResponse;
// Forward declaration of class api__Response.
class api__Response;
// Forward declaration of class api__Pipeline.
class api__Pipeline;
// Forward declaration of class api__Object.
class api__Object;
// Forward declaration of class api__ArrayOfStrings.
class api__ArrayOfStrings;
// Forward declaration of class api__ArrayOfPipelines.
class api__ArrayOfPipelines;
// Forward declaration of class api__ArrayOfExecutions.
class api__ArrayOfExecutions;
// Forward declaration of class api__PipelineParameter.
class api__PipelineParameter;
// Forward declaration of class api__ParameterTypedValue.
class api__ParameterTypedValue;
// Forward declaration of class api__IntKeyStringValuePair.
class api__IntKeyStringValuePair;
// Forward declaration of class api__Execution.
class api__Execution;
// Forward declaration of class api__StringKeyParameterValuePair.
class api__StringKeyParameterValuePair;
// Forward declaration of class api__GlobalProperties.
class api__GlobalProperties;
// Forward declaration of class api__PipelineKeyBooleanValuePair.
class api__PipelineKeyBooleanValuePair;
// Forward declaration of class api__deleteExecution.
class api__deleteExecution;
// Forward declaration of class api__deleteExecutionResponse.
class api__deleteExecutionResponse;
// Forward declaration of class api__getPipeline.
class api__getPipeline;
// Forward declaration of class api__getPipelineResponse.
class api__getPipelineResponse;
// Forward declaration of class api__authenticateHTTP.
class api__authenticateHTTP;
// Forward declaration of class api__authenticateHTTPResponse.
class api__authenticateHTTPResponse;
// Forward declaration of class api__logout.
class api__logout;
// Forward declaration of class api__logoutResponse.
class api__logoutResponse;
// Forward declaration of class api__updateExecution.
class api__updateExecution;
// Forward declaration of class api__StringKeyValuePair.
class api__StringKeyValuePair;
// Forward declaration of class api__updateExecutionResponse.
class api__updateExecutionResponse;
// Forward declaration of class api__getGlobalProperties.
class api__getGlobalProperties;
// Forward declaration of class api__getGlobalPropertiesResponse.
class api__getGlobalPropertiesResponse;
// Forward declaration of class api__initExecution.
class api__initExecution;
// Forward declaration of class api__initExecutionResponse.
class api__initExecutionResponse;
// Forward declaration of class api__getExecutionResults.
class api__getExecutionResults;
// Forward declaration of class api__getExecutionResultsResponse.
class api__getExecutionResultsResponse;
// Forward declaration of class api__killExecution.
class api__killExecution;
// Forward declaration of class api__getStdOut.
class api__getStdOut;
// Forward declaration of class api__getStdOutResponse.
class api__getStdOutResponse;
// Forward declaration of class api__getStdErr.
class api__getStdErr;
// Forward declaration of class api__getStdErrResponse.
class api__getStdErrResponse;
// Forward declaration of class api__killExecutionResponse.
class api__killExecutionResponse;
// Forward declaration of class api__getExecution.
class api__getExecution;
// Forward declaration of class api__getExecutionResponse.
class api__getExecutionResponse;
// Forward declaration of class api__playExecution.
class api__playExecution;
// Forward declaration of class api__playExecutionResponse.
class api__playExecutionResponse;
// Forward declaration of class api__listPipelines.
class api__listPipelines;
// Forward declaration of class api__listPipelinesResponse.
class api__listPipelinesResponse;
// Forward declaration of class api__listExecutions.
class api__listExecutions;
// Forward declaration of class api__listExecutionsResponse.
class api__listExecutionsResponse;
/******************************************************************************\
* *
* Schema Types and Top-Level Elements and Attributes *
* http://france-life-imaging.fr/api *
* *
\******************************************************************************/
/// "http://france-life-imaging.fr/api":ParameterType is a simpleType restriction of xs:string.
/// Note: enum values are prefixed with 'api__ParameterType' to avoid name clashes, please use wsdl2h option -e to omit this prefix
enum api__ParameterType
{
api__ParameterType__File, ///< xs:string value="File"
api__ParameterType__String, ///< xs:string value="String"
api__ParameterType__Boolean, ///< xs:string value="Boolean"
api__ParameterType__Int64, ///< xs:string value="Int64"
api__ParameterType__Double, ///< xs:string value="Double"
api__ParameterType__List, ///< xs:string value="List"
};
/// "http://france-life-imaging.fr/api":ExecutionStatus is a simpleType restriction of xs:string.
/// Note: enum values are prefixed with 'api__ExecutionStatus' to avoid name clashes, please use wsdl2h option -e to omit this prefix
enum api__ExecutionStatus
{
api__ExecutionStatus__Initializing, ///< xs:string value="Initializing"
api__ExecutionStatus__Ready, ///< xs:string value="Ready"
api__ExecutionStatus__Running, ///< xs:string value="Running"
api__ExecutionStatus__Finished, ///< xs:string value="Finished"
api__ExecutionStatus__InitializationFailed, ///< xs:string value="InitializationFailed"
api__ExecutionStatus__ExecutionFailed, ///< xs:string value="ExecutionFailed"
api__ExecutionStatus__Unknown, ///< xs:string value="Unknown"
api__ExecutionStatus__Killed, ///< xs:string value="Killed"
};
/// "http://france-life-imaging.fr/api":Module is a simpleType restriction of xs:string.
/// Note: enum values are prefixed with 'api__Module' to avoid name clashes, please use wsdl2h option -e to omit this prefix
enum api__Module
{
api__Module__Processing, ///< xs:string value="Processing"
api__Module__Data, ///< xs:string value="Data"
api__Module__Management, ///< xs:string value="Management"
api__Module__Commercial, ///< xs:string value="Commercial"
};
/******************************************************************************\
* *
* Schema Complex Types and Top-Level Elements *
* http://france-life-imaging.fr/api *
* *
\******************************************************************************/
/// "http://france-life-imaging.fr/api":authenticateSession is a complexType.
class api__authenticateSession
{ public:
/// Element userName of type xs:string.
std::string userName 1; ///< Required element.
/// Element password of type xs:string.
std::string password 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":authenticateSessionResponse is a complexType.
class api__authenticateSessionResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":Response is a complexType.
class api__Response
{ public:
/// Element statusCode of type xs:int.
int statusCode 1; ///< Required element.
/// Element errorMessage of type xs:string.
std::string* errorMessage 0; ///< Optional element.
/// CHOICE OF ELEMENTS <xs:choice>
$int __union_Response ; ///< Union _api__union_Response selector: set to SOAP_UNION__api__union_Response_<fieldname>
union _api__union_Response
{
/// Vector of api__Pipeline* with length 0..unbounded
std::vector<api__Pipeline* > *returnedValuePipeline 0;
/// Element returnedValueExecution of type "http://france-life-imaging.fr/api":Execution.
api__Execution* returnedValueExecution 0; ///< Optional element.
/// Element returnedValueGlobalProp of type "http://france-life-imaging.fr/api":GlobalProperties.
api__GlobalProperties* returnedValueGlobalProp 0; ///< Optional element.
/// Vector of std::string with length 0..unbounded
std::vector<std::string > *returnedValueStr 0;
/// Vector of api__ArrayOfStrings* with length 0..unbounded
std::vector<api__ArrayOfStrings* > *returnedValueListStrings 0;
/// Vector of api__ArrayOfExecutions* with length 0..unbounded
std::vector<api__ArrayOfExecutions*> *returnedValueListExecutions 0;
/// Vector of api__ArrayOfPipelines* with length 0..unbounded
std::vector<api__ArrayOfPipelines*> *returnedValueListPipelines 0;
/// Element returnedValueStatus of type "http://france-life-imaging.fr/api":ExecutionStatus.
enum api__ExecutionStatus* returnedValueStatus 0; ///< Optional element.
/// Vector of api__PipelineKeyBooleanValuePair* with length 0..unbounded
std::vector<api__PipelineKeyBooleanValuePair*> *returnedValuePairKey 0;
} union_Response ;
// END OF CHOICE
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":Object is a complexType.
class api__Object
{ public:
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":ArrayOfStrings is a complexType.
class api__ArrayOfStrings
{ public:
/// Vector of std::string with length 0..unbounded
std::vector<std::string > item 0;
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":ArrayOfPipelines is a complexType.
class api__ArrayOfPipelines
{ public:
/// Vector of api__Pipeline* with length 0..unbounded
std::vector<api__Pipeline* > item 0;
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":ArrayOfExecutions is a complexType.
class api__ArrayOfExecutions
{ public:
/// Vector of api__Execution* with length 0..unbounded
std::vector<api__Execution* > item 0;
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":PipelineParameter is a complexType.
class api__PipelineParameter
{ public:
/// Element name of type xs:string.
std::string name 1; ///< Required element.
/// Element type of type "http://france-life-imaging.fr/api":ParameterType.
enum api__ParameterType type 1; ///< Required element.
/// Element isOptional of type xs:boolean.
bool isOptional 1; ///< Required element.
/// Element isReturnedValue of type xs:boolean.
bool isReturnedValue 1; ///< Required element.
/// Element defaultValue of type "http://france-life-imaging.fr/api":ParameterTypedValue.
api__ParameterTypedValue* defaultValue 0; ///< Optional element.
/// Element description of type xs:string.
std::string* description 0; ///< Optional element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":ParameterTypedValue is a complexType.
class api__ParameterTypedValue
{ public:
/// Element type of type "http://france-life-imaging.fr/api":ParameterType.
enum api__ParameterType type 1; ///< Required element.
/// CHOICE OF ELEMENTS <xs:choice>
$int __union_ParameterTypedValue ; ///< Union _api__union_ParameterTypedValue selector: set to SOAP_UNION__api__union_ParameterTypedValue_<fieldname>
union _api__union_ParameterTypedValue
{
/// Element valueStr of type xs:string.
std::string* valueStr 1; ///< Required element.
/// Element valueBool of type xs:boolean.
bool valueBool 1; ///< Required element.
/// Element valueInt of type xs:int.
int valueInt 1; ///< Required element.
/// Element valueDouble of type xs:double.
double valueDouble 1; ///< Required element.
} union_ParameterTypedValue ;
// END OF CHOICE
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":IntKeyStringValuePair is a complexType.
class api__IntKeyStringValuePair
{ public:
/// Element name of type xs:int.
int name 1; ///< Required element.
/// Element value of type xs:string.
std::string value 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":StringKeyParameterValuePair is a complexType.
class api__StringKeyParameterValuePair
{ public:
/// Element name of type xs:string.
std::string name 1; ///< Required element.
/// Element value of type "http://france-life-imaging.fr/api":ParameterTypedValue.
api__ParameterTypedValue* value 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":PipelineKeyBooleanValuePair is a complexType.
class api__PipelineKeyBooleanValuePair
{ public:
/// Element name of type "http://france-life-imaging.fr/api":Pipeline.
api__Pipeline* name 1; ///< Required element.
/// Element value of type xs:boolean.
bool value 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":deleteExecution is a complexType.
class api__deleteExecution
{ public:
/// Element executionId of type xs:string.
std::string executionId 1; ///< Required element.
/// Element deleteFiles of type xs:boolean.
bool deleteFiles 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":deleteExecutionResponse is a complexType.
class api__deleteExecutionResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getPipeline is a complexType.
class api__getPipeline
{ public:
/// Element pipelineId of type xs:string.
std::string pipelineId 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getPipelineResponse is a complexType.
class api__getPipelineResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":authenticateHTTP is a complexType.
class api__authenticateHTTP
{ public:
/// Element userName of type xs:string.
std::string userName 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":authenticateHTTPResponse is a complexType.
class api__authenticateHTTPResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":logout is a complexType.
class api__logout
{ public:
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":logoutResponse is a complexType.
class api__logoutResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":updateExecution is a complexType.
class api__updateExecution
{ public:
/// Element executionId of type xs:string.
std::string executionId 1; ///< Required element.
/// Vector of api__StringKeyValuePair* with length 1..unbounded
std::vector<api__StringKeyValuePair*> keyValuePair 1;
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":StringKeyValuePair is a complexType.
class api__StringKeyValuePair
{ public:
/// Element name of type xs:string.
std::string name 1; ///< Required element.
/// CHOICE OF ELEMENTS <xs:choice>
$int __union_StringKeyValuePair ; ///< Union _api__union_StringKeyValuePair selector: set to SOAP_UNION__api__union_StringKeyValuePair_<fieldname>
union _api__union_StringKeyValuePair
{
/// Element valueStr of type xs:string.
std::string* valueStr 1; ///< Required element.
/// Element valueInt of type xs:int.
int valueInt 1; ///< Required element.
/// Element valueStatus of type "http://france-life-imaging.fr/api":ExecutionStatus.
enum api__ExecutionStatus valueStatus 1; ///< Required element.
/// Element valueParamType of type "http://france-life-imaging.fr/api":ParameterTypedValue.
api__ParameterTypedValue* valueParamType 1; ///< Required element.
} union_StringKeyValuePair ;
// END OF CHOICE
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":updateExecutionResponse is a complexType.
class api__updateExecutionResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getGlobalProperties is a complexType.
class api__getGlobalProperties
{ public:
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getGlobalPropertiesResponse is a complexType.
class api__getGlobalPropertiesResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":initExecution is a complexType.
class api__initExecution
{ public:
/// Element pipelineId of type xs:string.
std::string pipelineId 1; ///< Required element.
/// Vector of api__StringKeyParameterValuePair* with length 1..unbounded
std::vector<api__StringKeyParameterValuePair*> inputValue 1;
/// Element timeout of type xs:int.
int* timeout 0; ///< Optional element.
/// Element executionName of type xs:string.
std::string* executionName 0; ///< Optional element.
/// Element studyId of type xs:string.
std::string* studyId 0; ///< Optional element.
/// Element playExecution of type xs:boolean.
bool* playExecution 0; ///< Optional element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":initExecutionResponse is a complexType.
class api__initExecutionResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getExecutionResults is a complexType.
class api__getExecutionResults
{ public:
/// Element executionId of type xs:string.
std::string executionId 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getExecutionResultsResponse is a complexType.
class api__getExecutionResultsResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":killExecution is a complexType.
class api__killExecution
{ public:
/// Element executionId of type xs:string.
std::string executionId 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getStdOut is a complexType.
class api__getStdOut
{ public:
/// Element executionId of type xs:string.
std::string executionId 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getStdOutResponse is a complexType.
class api__getStdOutResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getStdErr is a complexType.
class api__getStdErr
{ public:
/// Element executionId of type xs:string.
std::string executionId 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getStdErrResponse is a complexType.
class api__getStdErrResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":killExecutionResponse is a complexType.
class api__killExecutionResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getExecution is a complexType.
class api__getExecution
{ public:
/// Element executionId of type xs:string.
std::string executionId 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":getExecutionResponse is a complexType.
class api__getExecutionResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":playExecution is a complexType.
class api__playExecution
{ public:
/// Element executionId of type xs:string.
std::string executionId 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":playExecutionResponse is a complexType.
class api__playExecutionResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":listPipelines is a complexType.
class api__listPipelines
{ public:
/// Element studyIdentifier of type xs:string.
std::string studyIdentifier 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":listPipelinesResponse is a complexType.
class api__listPipelinesResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":listExecutions is a complexType.
class api__listExecutions
{ public:
/// Element studyIdentifier of type xs:string.
std::string studyIdentifier 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":listExecutionsResponse is a complexType.
class api__listExecutionsResponse
{ public:
/// Element return of type "http://france-life-imaging.fr/api":Response.
api__Response* return_ 1; ///< Required element.
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};
/// "http://france-life-imaging.fr/api":Pipeline is a complexType with complexContent extension of "http://france-life-imaging.fr/api":Object.
class api__Pipeline : public api__Object
{ public:
/* INHERITED FROM api__Object:
END OF INHERITED */
/// Element identifier of type xs:string.
std::string identifier 1; ///< Required element.
/// Element name of type xs:string.
std::string name 1; ///< Required element.
/// Element description of type xs:string.
std::string* description 0; ///< Optional element.
/// Element version of type xs:string.
std::string version 1; ///< Required element.
/// Vector of api__PipelineParameter* with length 0..unbounded
std::vector<api__PipelineParameter*> parameters 0;
/// Vector of api__IntKeyStringValuePair* with length 0..unbounded
std::vector<api__IntKeyStringValuePair*> errorCodesAndMessages 0;
/// Element canExecute of type xs:boolean.
bool* canExecute 0; ///< Optional element.
};
/// "http://france-life-imaging.fr/api":Execution is a complexType with complexContent extension of "http://france-life-imaging.fr/api":Object.
class api__Execution : public api__Object
{ public:
/* INHERITED FROM api__Object:
END OF INHERITED */
/// Element identifier of type xs:string.
std::string identifier 1; ///< Required element.
/// Element name of type xs:string.
std::string name 1; ///< Required element.
/// Element pipelineIdentifier of type xs:string.
std::string pipelineIdentifier 1; ///< Required element.
/// Element timeout of type xs:int.
int* timeout 0; ///< Optional element.
/// Element status of type "http://france-life-imaging.fr/api":ExecutionStatus.
enum api__ExecutionStatus status 1; ///< Required element.
/// Vector of api__StringKeyParameterValuePair* with length 0..unbounded
std::vector<api__StringKeyParameterValuePair*> inputValue 0;
/// Vector of api__StringKeyParameterValuePair* with length 0..unbounded
std::vector<api__StringKeyParameterValuePair*> returnedFile 0;
/// Element studyIdentifier of type xs:string.
std::string* studyIdentifier 0; ///< Optional element.
/// Element errorCode of type xs:int.
int* errorCode 0; ///< Optional element.
/// Element startDate of type xs:long.
LONG64* startDate 0; ///< Optional element.
/// Element endDate of type xs:long.
LONG64* endDate 0; ///< Optional element.
};
/// "http://france-life-imaging.fr/api":GlobalProperties is a complexType with complexContent extension of "http://france-life-imaging.fr/api":Object.
class api__GlobalProperties : public api__Object
{ public:
/* INHERITED FROM api__Object:
END OF INHERITED */
/// Vector of api__IntKeyStringValuePair* with length 0..unbounded
std::vector<api__IntKeyStringValuePair*> APIErrorCodesAndMessages 0;
/// Vector of std::string with length 1..unbounded
std::vector<std::string > supportedTransferProtocol 1;
/// Vector of enum api__Module with length 1..unbounded
std::vector<enum api__Module > supportedModule 1;
/// Element email of type xs:string.
std::string* email 0; ///< Optional element.
/// Element platformDescription of type xs:string.
std::string* platformDescription 0; ///< Optional element.
/// Element minAuthorizedExecutionTimeout of type xs:int.
int* minAuthorizedExecutionTimeout 0; ///< Optional element.
/// Element maxAuthorizedExecutionTimeout of type xs:int.
int* maxAuthorizedExecutionTimeout 0; ///< Optional element.
/// Element defaultExecutionTimeout of type xs:int.
int* defaultExecutionTimeout 0; ///< Optional element.
/// Element isKillExecutionSupported of type xs:boolean.
bool isKillExecutionSupported 1; ///< Required element.
/// Element defaultStudy of type xs:string.
std::string* defaultStudy 0; ///< Optional element.
/// Element supportedAPIVersion of type xs:string.
std::string supportedAPIVersion 1; ///< Required element.
};
/******************************************************************************\
* *
* Additional Top-Level Elements *
* http://france-life-imaging.fr/api *
* *
\******************************************************************************/
/// Top-level root element "http://france-life-imaging.fr/api":authenticateHTTP of type "http://france-life-imaging.fr/api":authenticateHTTP.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":authenticateHTTPResponse of type "http://france-life-imaging.fr/api":authenticateHTTPResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":authenticateSession of type "http://france-life-imaging.fr/api":authenticateSession.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":authenticateSessionResponse of type "http://france-life-imaging.fr/api":authenticateSessionResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":deleteExecution of type "http://france-life-imaging.fr/api":deleteExecution.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":deleteExecutionResponse of type "http://france-life-imaging.fr/api":deleteExecutionResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getExecution of type "http://france-life-imaging.fr/api":getExecution.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getExecutionResponse of type "http://france-life-imaging.fr/api":getExecutionResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getExecutionResults of type "http://france-life-imaging.fr/api":getExecutionResults.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getExecutionResultsResponse of type "http://france-life-imaging.fr/api":getExecutionResultsResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getGlobalProperties of type "http://france-life-imaging.fr/api":getGlobalProperties.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getGlobalPropertiesResponse of type "http://france-life-imaging.fr/api":getGlobalPropertiesResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getPipeline of type "http://france-life-imaging.fr/api":getPipeline.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getPipelineResponse of type "http://france-life-imaging.fr/api":getPipelineResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":initExecution of type "http://france-life-imaging.fr/api":initExecution.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":initExecutionResponse of type "http://france-life-imaging.fr/api":initExecutionResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getStdOut of type "http://france-life-imaging.fr/api":getStdOut.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getStdOutResponse of type "http://france-life-imaging.fr/api":getStdOutResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getStdErr of type "http://france-life-imaging.fr/api":getStdErr.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":getStdErrResponse of type "http://france-life-imaging.fr/api":getStdErrResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":killExecution of type "http://france-life-imaging.fr/api":killExecution.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":killExecutionResponse of type "http://france-life-imaging.fr/api":killExecutionResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":listExecutions of type "http://france-life-imaging.fr/api":listExecutions.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":listExecutionsResponse of type "http://france-life-imaging.fr/api":listExecutionsResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":listPipelines of type "http://france-life-imaging.fr/api":listPipelines.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":listPipelinesResponse of type "http://france-life-imaging.fr/api":listPipelinesResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":logout of type "http://france-life-imaging.fr/api":logout.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":logoutResponse of type "http://france-life-imaging.fr/api":logoutResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":playExecution of type "http://france-life-imaging.fr/api":playExecution.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":playExecutionResponse of type "http://france-life-imaging.fr/api":playExecutionResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":updateExecution of type "http://france-life-imaging.fr/api":updateExecution.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/// Top-level root element "http://france-life-imaging.fr/api":updateExecutionResponse of type "http://france-life-imaging.fr/api":updateExecutionResponse.
/// Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.
/******************************************************************************\
* *
* Additional Top-Level Attributes *
* http://france-life-imaging.fr/api *
* *
\******************************************************************************/
/******************************************************************************\
* *
* Services *
* *
\******************************************************************************/
//gsoap api service name: CarminSoapBinding
//gsoap api service type: Carmin
//gsoap api service port: http://localhost/api
//gsoap api service namespace: http://france-life-imaging.fr/api
//gsoap api service transport: http://schemas.xmlsoap.org/soap/http
/** @mainpage Carmin Definitions
@section Carmin_bindings Service Bindings
- @ref CarminSoapBinding
@section Carmin_more More Information