1
2 package com.aggregator;
3
4 import javax.xml.bind.JAXBElement;
5 import javax.xml.bind.annotation.XmlElementDecl;
6 import javax.xml.bind.annotation.XmlRegistry;
7 import javax.xml.namespace.QName;
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 @XmlRegistry
25 public class ObjectFactory {
26
27 private final static QName _SubmitReport_QNAME = new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "submitReport");
28 private final static QName _HandlingReportErrors_QNAME = new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "HandlingReportErrors");
29 private final static QName _SubmitReportResponse_QNAME = new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "submitReportResponse");
30
31
32
33
34
35 public ObjectFactory() {
36 }
37
38
39
40
41
42 public HandlingReportErrors createHandlingReportErrors() {
43 return new HandlingReportErrors();
44 }
45
46
47
48
49
50 public SubmitReportResponse createSubmitReportResponse() {
51 return new SubmitReportResponse();
52 }
53
54
55
56
57
58 public HandlingReport createHandlingReport() {
59 return new HandlingReport();
60 }
61
62
63
64
65
66 public SubmitReport createSubmitReport() {
67 return new SubmitReport();
68 }
69
70
71
72
73
74 @XmlElementDecl(namespace = "http://ws.handling.interfaces.dddsample.citerus.se/", name = "submitReport")
75 public JAXBElement<SubmitReport> createSubmitReport(SubmitReport value) {
76 return new JAXBElement<SubmitReport>(_SubmitReport_QNAME, SubmitReport.class, null, value);
77 }
78
79
80
81
82
83 @XmlElementDecl(namespace = "http://ws.handling.interfaces.dddsample.citerus.se/", name = "HandlingReportErrors")
84 public JAXBElement<HandlingReportErrors> createHandlingReportErrors(HandlingReportErrors value) {
85 return new JAXBElement<HandlingReportErrors>(_HandlingReportErrors_QNAME, HandlingReportErrors.class, null, value);
86 }
87
88
89
90
91
92 @XmlElementDecl(namespace = "http://ws.handling.interfaces.dddsample.citerus.se/", name = "submitReportResponse")
93 public JAXBElement<SubmitReportResponse> createSubmitReportResponse(SubmitReportResponse value) {
94 return new JAXBElement<SubmitReportResponse>(_SubmitReportResponse_QNAME, SubmitReportResponse.class, null, value);
95 }
96
97 }