1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2009.07.19 at 09:49:41 PM CDT
6 //
7
8
9 package org.apache.ws.scout.model.uddi.v2;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlElement;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /**
19 * <p>Java class for assertionStatusItem complex type.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <complexType name="assertionStatusItem">
25 * <complexContent>
26 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27 * <sequence>
28 * <element ref="{urn:uddi-org:api_v2}fromKey"/>
29 * <element ref="{urn:uddi-org:api_v2}toKey"/>
30 * <element ref="{urn:uddi-org:api_v2}keyedReference"/>
31 * <element ref="{urn:uddi-org:api_v2}keysOwned"/>
32 * </sequence>
33 * <attribute name="completionStatus" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
34 * </restriction>
35 * </complexContent>
36 * </complexType>
37 * </pre>
38 *
39 *
40 */
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "assertionStatusItem", propOrder = {
43 "fromKey",
44 "toKey",
45 "keyedReference",
46 "keysOwned"
47 })
48 public class AssertionStatusItem {
49
50 @XmlElement(required = true)
51 protected String fromKey;
52 @XmlElement(required = true)
53 protected String toKey;
54 @XmlElement(required = true)
55 protected KeyedReference keyedReference;
56 @XmlElement(required = true)
57 protected KeysOwned keysOwned;
58 @XmlAttribute(required = true)
59 protected String completionStatus;
60
61 /**
62 * Gets the value of the fromKey property.
63 *
64 * @return
65 * possible object is
66 * {@link String }
67 *
68 */
69 public String getFromKey() {
70 return fromKey;
71 }
72
73 /**
74 * Sets the value of the fromKey property.
75 *
76 * @param value
77 * allowed object is
78 * {@link String }
79 *
80 */
81 public void setFromKey(String value) {
82 this.fromKey = value;
83 }
84
85 /**
86 * Gets the value of the toKey property.
87 *
88 * @return
89 * possible object is
90 * {@link String }
91 *
92 */
93 public String getToKey() {
94 return toKey;
95 }
96
97 /**
98 * Sets the value of the toKey property.
99 *
100 * @param value
101 * allowed object is
102 * {@link String }
103 *
104 */
105 public void setToKey(String value) {
106 this.toKey = value;
107 }
108
109 /**
110 * Gets the value of the keyedReference property.
111 *
112 * @return
113 * possible object is
114 * {@link KeyedReference }
115 *
116 */
117 public KeyedReference getKeyedReference() {
118 return keyedReference;
119 }
120
121 /**
122 * Sets the value of the keyedReference property.
123 *
124 * @param value
125 * allowed object is
126 * {@link KeyedReference }
127 *
128 */
129 public void setKeyedReference(KeyedReference value) {
130 this.keyedReference = value;
131 }
132
133 /**
134 * Gets the value of the keysOwned property.
135 *
136 * @return
137 * possible object is
138 * {@link KeysOwned }
139 *
140 */
141 public KeysOwned getKeysOwned() {
142 return keysOwned;
143 }
144
145 /**
146 * Sets the value of the keysOwned property.
147 *
148 * @param value
149 * allowed object is
150 * {@link KeysOwned }
151 *
152 */
153 public void setKeysOwned(KeysOwned value) {
154 this.keysOwned = value;
155 }
156
157 /**
158 * Gets the value of the completionStatus property.
159 *
160 * @return
161 * possible object is
162 * {@link String }
163 *
164 */
165 public String getCompletionStatus() {
166 return completionStatus;
167 }
168
169 /**
170 * Sets the value of the completionStatus property.
171 *
172 * @param value
173 * allowed object is
174 * {@link String }
175 *
176 */
177 public void setCompletionStatus(String value) {
178 this.completionStatus = value;
179 }
180
181 }