aboutsummaryrefslogtreecommitdiffstats
path: root/aai-service/provider/src/main/java/org/openecomp/aai/inventory/v8/ObjectFactory.java
blob: 37786a7c7f48109c7389c62f04813da36632ad91 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
/*-
 * ============LICENSE_START=======================================================
 * openECOMP : SDN-C
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights
 * 						reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.03.29 at 11:26:46 AM GMT+00:00 
//


package org.openecomp.aai.inventory.v8;

import javax.xml.bind.annotation.XmlRegistry;


/**
 * This object contains factory methods for each 
 * Java content interface and Java element interface 
 * generated in the org.openecomp.aai.inventory.v8 package. 
 * <p>An ObjectFactory allows you to programatically 
 * construct new instances of the Java representation 
 * for XML content. The Java representation of XML 
 * content can consist of schema derived interfaces 
 * and classes representing the binding of schema 
 * type definitions, element declarations and model 
 * groups.  Factory methods for each of these are 
 * provided in this class.
 * 
 */
@XmlRegistry
public class ObjectFactory {


    /**
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openecomp.aai.inventory.v8
     * 
     */
    public ObjectFactory() {
    }

    /**
     * Create an instance of {@link ModelElement }
     * 
     */
    public ModelElement createModelElement() {
        return new ModelElement();
    }

    /**
     * Create an instance of {@link NamedQuery }
     * 
     */
    public NamedQuery createNamedQuery() {
        return new NamedQuery();
    }

    /**
     * Create an instance of {@link ResultData }
     * 
     */
    public ResultData createResultData() {
        return new ResultData();
    }

    /**
     * Create an instance of {@link SearchResults }
     * 
     */
    public SearchResults createSearchResults() {
        return new SearchResults();
    }

    /**
     * Create an instance of {@link Search }
     * 
     */
    public Search createSearch() {
        return new Search();
    }

    /**
     * Create an instance of {@link UpdateNodeKey }
     * 
     */
    public UpdateNodeKey createUpdateNodeKey() {
        return new UpdateNodeKey();
    }

    /**
     * Create an instance of {@link ActionData }
     * 
     */
    public ActionData createActionData() {
        return new ActionData();
    }

    /**
     * Create an instance of {@link Action }
     * 
     */
    public Action createAction() {
        return new Action();
    }

    /**
     * Create an instance of {@link Update }
     * 
     */
    public Update createUpdate() {
        return new Update();
    }

    /**
     * Create an instance of {@link KeyData }
     * 
     */
    public KeyData createKeyData() {
        return new KeyData();
    }

    /**
     * Create an instance of {@link Notify }
     * 
     */
    public Notify createNotify() {
        return new Notify();
    }

    /**
     * Create an instance of {@link Actions }
     * 
     */
    public Actions createActions() {
        return new Actions();
    }

    /**
     * Create an instance of {@link RelationshipData }
     * 
     */
    public RelationshipData createRelationshipData() {
        return new RelationshipData();
    }

    /**
     * Create an instance of {@link RelatedToProperty }
     * 
     */
    public RelatedToProperty createRelatedToProperty() {
        return new RelatedToProperty();
    }

    /**
     * Create an instance of {@link Relationship }
     * 
     */
    public Relationship createRelationship() {
        return new Relationship();
    }

    /**
     * Create an instance of {@link RelationshipList }
     * 
     */
    public RelationshipList createRelationshipList() {
        return new RelationshipList();
    }

    /**
     * Create an instance of {@link VolumeGroup }
     * 
     */
    public VolumeGroup createVolumeGroup() {
        return new VolumeGroup();
    }

    /**
     * Create an instance of {@link VolumeGroups }
     * 
     */
    public VolumeGroups createVolumeGroups() {
        return new VolumeGroups();
    }

    /**
     * Create an instance of {@link Volume }
     * 
     */
    public Volume createVolume() {
        return new Volume();
    }

    /**
     * Create an instance of {@link Volumes }
     * 
     */
    public Volumes createVolumes() {
        return new Volumes();
    }

    /**
     * Create an instance of {@link L3InterfaceIpv4AddressList }
     * 
     */
    public L3InterfaceIpv4AddressList createL3InterfaceIpv4AddressList() {
        return new L3InterfaceIpv4AddressList();
    }

    /**
     * Create an instance of {@link L3InterfaceIpv6AddressList }
     * 
     */
    public L3InterfaceIpv6AddressList createL3InterfaceIpv6AddressList() {
        return new L3InterfaceIpv6AddressList();
    }

    /**
     * Create an instance of {@link Vlan }
     * 
     */
    public Vlan createVlan() {
        return new Vlan();
    }

    /**
     * Create an instance of {@link Vlans }
     * 
     */
    public Vlans createVlans() {
        return new Vlans();
    }

    /**
     * Create an instance of {@link LInterface }
     * 
     */
    public LInterface createLInterface() {
        return new LInterface();
    }

    /**
     * Create an instance of {@link LInterfaces }
     * 
     */
    public LInterfaces createLInterfaces() {
        return new LInterfaces();
    }

    /**
     * Create an instance of {@link Vserver }
     * 
     */
    public Vserver createVserver() {
        return new Vserver();
    }

    /**
     * Create an instance of {@link Vservers }
     * 
     */
    public Vservers createVservers() {
        return new Vservers();
    }

    /**
     * Create an instance of {@link Tenant }
     * 
     */
    public Tenant createTenant() {
        return new Tenant();
    }

    /**
     * Create an instance of {@link Tenants }
     * 
     */
    public Tenants createTenants() {
        return new Tenants();
    }

    /**
     * Create an instance of {@link Flavor }
     * 
     */
    public Flavor createFlavor() {
        return new Flavor();
    }

    /**
     * Create an instance of {@link Flavors }
     * 
     */
    public Flavors createFlavors() {
        return new Flavors();
    }

    /**
     * Create an instance of {@link GroupAssignment }
     * 
     */
    public GroupAssignment createGroupAssignment() {
        return new GroupAssignment();
    }

    /**
     * Create an instance of {@link GroupAssignments }
     * 
     */
    public GroupAssignments createGroupAssignments() {
        return new GroupAssignments();
    }

    /**
     * Create an instance of {@link Snapshot }
     * 
     */
    public Snapshot createSnapshot() {
        return new Snapshot();
    }

    /**
     * Create an instance of {@link Snapshots }
     * 
     */
    public Snapshots createSnapshots() {
        return new Snapshots();
    }

    /**
     * Create an instance of {@link Metadatum }
     * 
     */
    public Metadatum createMetadatum() {
        return new Metadatum();
    }

    /**
     * Create an instance of {@link Metadata }
     * 
     */
    public Metadata createMetadata() {
        return new Metadata();
    }

    /**
     * Create an instance of {@link Image }
     * 
     */
    public Image createImage() {
        return new Image();
    }

    /**
     * Create an instance of {@link Images }
     * 
     */
    public Images createImages() {
        return new Images();
    }

    /**
     * Create an instance of {@link AvailabilityZone }
     * 
     */
    public AvailabilityZone createAvailabilityZone() {
        return new AvailabilityZone();
    }

    /**
     * Create an instance of {@link AvailabilityZones }
     * 
     */
    public AvailabilityZones createAvailabilityZones() {
        return new AvailabilityZones();
    }

    /**
     * Create an instance of {@link CloudRegion }
     * 
     */
    public CloudRegion createCloudRegion() {
        return new CloudRegion();
    }

    /**
     * Create an instance of {@link CloudRegions }
     * 
     */
    public CloudRegions createCloudRegions() {
        return new CloudRegions();
    }

    /**
     * Create an instance of {@link PInterface }
     * 
     */
    public PInterface createPInterface() {
        return new PInterface();
    }

    /**
     * Create an instance of {@link PInterfaces }
     * 
     */
    public PInterfaces createPInterfaces() {
        return new PInterfaces();
    }

    /**
     * Create an instance of {@link LagInterface }
     * 
     */
    public LagInterface createLagInterface() {
        return new LagInterface();
    }

    /**
     * Create an instance of {@link LagInterfaces }
     * 
     */
    public LagInterfaces createLagInterfaces() {
        return new LagInterfaces();
    }

    /**
     * Create an instance of {@link Pserver }
     * 
     */
    public Pserver createPserver() {
        return new Pserver();
    }

    /**
     * Create an instance of {@link Pservers }
     * 
     */
    public Pservers createPservers() {
        return new Pservers();
    }

    /**
     * Create an instance of {@link CloudInfrastructure }
     * 
     */
    public CloudInfrastructure createCloudInfrastructure() {
        return new CloudInfrastructure();
    }

    /**
     * Create an instance of {@link ServiceInstance }
     * 
     */
    public ServiceInstance createServiceInstance() {
        return new ServiceInstance();
    }

    /**
     * Create an instance of {@link ServiceInstances }
     * 
     */
    public ServiceInstances createServiceInstances() {
        return new ServiceInstances();
    }

    /**
     * Create an instance of {@link ServiceSubscription }
     * 
     */
    public ServiceSubscription createServiceSubscription() {
        return new ServiceSubscription();
    }

    /**
     * Create an instance of {@link ServiceSubscriptions }
     * 
     */
    public ServiceSubscriptions createServiceSubscriptions() {
        return new ServiceSubscriptions();
    }

    /**
     * Create an instance of {@link Customer }
     * 
     */
    public Customer createCustomer() {
        return new Customer();
    }

    /**
     * Create an instance of {@link Customers }
     * 
     */
    public Customers createCustomers() {
        return new Customers();
    }

    /**
     * Create an instance of {@link Business }
     * 
     */
    public Business createBusiness() {
        return new Business();
    }

    /**
     * Create an instance of {@link Service }
     * 
     */
    public Service createService() {
        return new Service();
    }

    /**
     * Create an instance of {@link Services }
     * 
     */
    public Services createServices() {
        return new Services();
    }

    /**
     * Create an instance of {@link ElementChoiceSet }
     * 
     */
    public ElementChoiceSet createElementChoiceSet() {
        return new ElementChoiceSet();
    }

    /**
     * Create an instance of {@link ModelElements }
     * 
     */
    public ModelElements createModelElements() {
        return new ModelElements();
    }

    /**
     * Create an instance of {@link ModelElement.LinkagePoints }
     * 
     */
    public ModelElement.LinkagePoints createModelElementLinkagePoints() {
        return new ModelElement.LinkagePoints();
    }

    /**
     * Create an instance of {@link ModelConstraints }
     * 
     */
    public ModelConstraints createModelConstraints() {
        return new ModelConstraints();
    }

    /**
     * Create an instance of {@link ModelConstraint }
     * 
     */
    public ModelConstraint createModelConstraint() {
        return new ModelConstraint();
    }

    /**
     * Create an instance of {@link ConstrainedElementSets }
     * 
     */
    public ConstrainedElementSets createConstrainedElementSets() {
        return new ConstrainedElementSets();
    }

    /**
     * Create an instance of {@link ConstrainedElementSet }
     * 
     */
    public ConstrainedElementSet createConstrainedElementSet() {
        return new ConstrainedElementSet();
    }

    /**
     * Create an instance of {@link ElementChoiceSets }
     * 
     */
    public ElementChoiceSets createElementChoiceSets() {
        return new ElementChoiceSets();
    }

    /**
     * Create an instance of {@link Model }
     * 
     */
    public Model createModel() {
        return new Model();
    }

    /**
     * Create an instance of {@link Models }
     * 
     */
    public Models createModels() {
        return new Models();
    }

    /**
     * Create an instance of {@link RelatedLookup }
     * 
     */
    public RelatedLookup createRelatedLookup() {
        return new RelatedLookup();
    }

    /**
     * Create an instance of {@link RelatedLookups }
     * 
     */
    public RelatedLookups createRelatedLookups() {
        return new RelatedLookups();
    }

    /**
     * Create an instance of {@link PropertyConstraint }
     * 
     */
    public PropertyConstraint createPropertyConstraint() {
        return new PropertyConstraint();
    }

    /**
     * Create an instance of {@link PropertyConstraints }
     * 
     */
    public PropertyConstraints createPropertyConstraints() {
        return new PropertyConstraints();
    }

    /**
     * Create an instance of {@link NamedQueryElement }
     * 
     */
    public NamedQueryElement createNamedQueryElement() {
        return new NamedQueryElement();
    }

    /**
     * Create an instance of {@link NamedQueryElements }
     * 
     */
    public NamedQueryElements createNamedQueryElements() {
        return new NamedQueryElements();
    }

    /**
     * Create an instance of {@link NamedQuery.RequiredInputParams }
     * 
     */
    public NamedQuery.RequiredInputParams createNamedQueryRequiredInputParams() {
        return new NamedQuery.RequiredInputParams();
    }

    /**
     * Create an instance of {@link NamedQueries }
     * 
     */
    public NamedQueries createNamedQueries() {
        return new NamedQueries();
    }

    /**
     * Create an instance of {@link ServiceDesignAndCreation }
     * 
     */
    public ServiceDesignAndCreation createServiceDesignAndCreation() {
        return new ServiceDesignAndCreation();
    }

    /**
     * Create an instance of {@link LogicalLink }
     * 
     */
    public LogicalLink createLogicalLink() {
        return new LogicalLink();
    }

    /**
     * Create an instance of {@link LogicalLinks }
     * 
     */
    public LogicalLinks createLogicalLinks() {
        return new LogicalLinks();
    }

    /**
     * Create an instance of {@link Vnfc }
     * 
     */
    public Vnfc createVnfc() {
        return new Vnfc();
    }

    /**
     * Create an instance of {@link Vnfcs }
     * 
     */
    public Vnfcs createVnfcs() {
        return new Vnfcs();
    }

    /**
     * Create an instance of {@link Subnet }
     * 
     */
    public Subnet createSubnet() {
        return new Subnet();
    }

    /**
     * Create an instance of {@link Subnets }
     * 
     */
    public Subnets createSubnets() {
        return new Subnets();
    }

    /**
     * Create an instance of {@link CtagAssignment }
     * 
     */
    public CtagAssignment createCtagAssignment() {
        return new CtagAssignment();
    }

    /**
     * Create an instance of {@link CtagAssignments }
     * 
     */
    public CtagAssignments createCtagAssignments() {
        return new CtagAssignments();
    }

    /**
     * Create an instance of {@link SegmentationAssignment }
     * 
     */
    public SegmentationAssignment createSegmentationAssignment() {
        return new SegmentationAssignment();
    }

    /**
     * Create an instance of {@link SegmentationAssignments }
     * 
     */
    public SegmentationAssignments createSegmentationAssignments() {
        return new SegmentationAssignments();
    }

    /**
     * Create an instance of {@link L3Network }
     * 
     */
    public L3Network createL3Network() {
        return new L3Network();
    }

    /**
     * Create an instance of {@link L3Networks }
     * 
     */
    public L3Networks createL3Networks() {
        return new L3Networks();
    }

    /**
     * Create an instance of {@link VfModule }
     * 
     */
    public VfModule createVfModule() {
        return new VfModule();
    }

    /**
     * Create an instance of {@link VfModules }
     * 
     */
    public VfModules createVfModules() {
        return new VfModules();
    }

    /**
     * Create an instance of {@link GenericVnf }
     * 
     */
    public GenericVnf createGenericVnf() {
        return new GenericVnf();
    }

    /**
     * Create an instance of {@link GenericVnfs }
     * 
     */
    public GenericVnfs createGenericVnfs() {
        return new GenericVnfs();
    }

    /**
     * Create an instance of {@link Pnf }
     * 
     */
    public Pnf createPnf() {
        return new Pnf();
    }

    /**
     * Create an instance of {@link Pnfs }
     * 
     */
    public Pnfs createPnfs() {
        return new Pnfs();
    }

    /**
     * Create an instance of {@link PhysicalLink }
     * 
     */
    public PhysicalLink createPhysicalLink() {
        return new PhysicalLink();
    }

    /**
     * Create an instance of {@link PhysicalLinks }
     * 
     */
    public PhysicalLinks createPhysicalLinks() {
        return new PhysicalLinks();
    }

    /**
     * Create an instance of {@link Network }
     * 
     */
    public Network createNetwork() {
        return new Network();
    }

    /**
     * Create an instance of {@link ReservedPropNames }
     * 
     */
    public ReservedPropNames createReservedPropNames() {
        return new ReservedPropNames();
    }

    /**
     * Create an instance of {@link EdgePropNames }
     * 
     */
    public EdgePropNames createEdgePropNames() {
        return new EdgePropNames();
    }

    /**
     * Create an instance of {@link AaiInternal }
     * 
     */
    public AaiInternal createAaiInternal() {
        return new AaiInternal();
    }

    /**
     * Create an instance of {@link Inventory }
     * 
     */
    public Inventory createInventory() {
        return new Inventory();
    }

    /**
     * Create an instance of {@link InventoryItemData }
     * 
     */
    public InventoryItemData createInventoryItemData() {
        return new InventoryItemData();
    }

    /**
     * Create an instance of {@link InventoryItem }
     * 
     */
    public InventoryItem createInventoryItem() {
        return new InventoryItem();
    }

    /**
     * Create an instance of {@link TaggedInventoryItemList }
     * 
     */
    public TaggedInventoryItemList createTaggedInventoryItemList() {
        return new TaggedInventoryItemList();
    }

    /**
     * Create an instance of {@link StartNodeFilter }
     * 
     */
    public StartNodeFilter createStartNodeFilter() {
        return new StartNodeFilter();
    }

    /**
     * Create an instance of {@link IncludeNodeFilter }
     * 
     */
    public IncludeNodeFilter createIncludeNodeFilter() {
        return new IncludeNodeFilter();
    }

    /**
     * Create an instance of {@link SecondaryFilter }
     * 
     */
    public SecondaryFilter createSecondaryFilter() {
        return new SecondaryFilter();
    }

    /**
     * Create an instance of {@link NotificationEventHeader }
     * 
     */
    public NotificationEventHeader createNotificationEventHeader() {
        return new NotificationEventHeader();
    }

    /**
     * Create an instance of {@link NotificationEvent }
     * 
     */
    public NotificationEvent createNotificationEvent() {
        return new NotificationEvent();
    }

    /**
     * Create an instance of {@link QueryParameters }
     * 
     */
    public QueryParameters createQueryParameters() {
        return new QueryParameters();
    }

    /**
     * Create an instance of {@link InstanceFilter }
     * 
     */
    public InstanceFilter createInstanceFilter() {
        return new InstanceFilter();
    }

    /**
     * Create an instance of {@link InstanceFilters }
     * 
     */
    public InstanceFilters createInstanceFilters() {
        return new InstanceFilters();
    }

    /**
     * Create an instance of {@link ModelAndNamedQuerySearch }
     * 
     */
    public ModelAndNamedQuerySearch createModelAndNamedQuerySearch() {
        return new ModelAndNamedQuerySearch();
    }

    /**
     * Create an instance of {@link Properties }
     * 
     */
    public Properties createProperties() {
        return new Properties();
    }

    /**
     * Create an instance of {@link ExtraProperties }
     * 
     */
    public ExtraProperties createExtraProperties() {
        return new ExtraProperties();
    }

    /**
     * Create an instance of {@link InventoryResponseItem }
     * 
     */
    public InventoryResponseItem createInventoryResponseItem() {
        return new InventoryResponseItem();
    }

    /**
     * Create an instance of {@link InventoryResponseItems }
     * 
     */
    public InventoryResponseItems createInventoryResponseItems() {
        return new InventoryResponseItems();
    }

    /**
     * Create an instance of {@link ResponseList }
     * 
     */
    public ResponseList createResponseList() {
        return new ResponseList();
    }

    /**
     * Create an instance of {@link ExtraProperty }
     * 
     */
    public ExtraProperty createExtraProperty() {
        return new ExtraProperty();
    }

}