1
2 package org.kuali.student.security.policy.dto;
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 _All_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/09/policy", "All");
28 private final static QName _ExactlyOne_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/09/policy", "ExactlyOne");
29
30
31
32
33
34 public ObjectFactory() {
35 }
36
37
38
39
40
41 public PolicyReference createPolicyReference() {
42 return new PolicyReference();
43 }
44
45
46
47
48
49 public Policy createPolicy() {
50 return new Policy();
51 }
52
53
54
55
56
57 public AppliesTo createAppliesTo() {
58 return new AppliesTo();
59 }
60
61
62
63
64
65 public OperatorContentType createOperatorContentType() {
66 return new OperatorContentType();
67 }
68
69
70
71
72
73 public PolicyAttachment createPolicyAttachment() {
74 return new PolicyAttachment();
75 }
76
77
78
79
80
81 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/09/policy", name = "All")
82 public JAXBElement<OperatorContentType> createAll(OperatorContentType value) {
83 return new JAXBElement<OperatorContentType>(_All_QNAME, OperatorContentType.class, null, value);
84 }
85
86
87
88
89
90 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/09/policy", name = "ExactlyOne")
91 public JAXBElement<OperatorContentType> createExactlyOne(OperatorContentType value) {
92 return new JAXBElement<OperatorContentType>(_ExactlyOne_QNAME, OperatorContentType.class, null, value);
93 }
94
95 }