1 /*
2 * Copyright 2001-2008 The Apache Software Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17
18
19 package org.uddi.api_v3;
20
21 import java.io.Serializable;
22
23 import javax.xml.bind.annotation.XmlAccessType;
24 import javax.xml.bind.annotation.XmlAccessorType;
25 import javax.xml.bind.annotation.XmlAttribute;
26 import javax.xml.bind.annotation.XmlElement;
27 import javax.xml.bind.annotation.XmlRootElement;
28 import javax.xml.bind.annotation.XmlTransient;
29 import javax.xml.bind.annotation.XmlType;
30
31
32 /**
33 * <p>Java class for assertionStatusItem complex type.
34 *
35 * <p>The following schema fragment specifies the expected content contained within this class.
36 *
37 * <pre>
38 * <complexType name="assertionStatusItem">
39 * <complexContent>
40 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
41 * <sequence>
42 * <element ref="{urn:uddi-org:api_v3}fromKey"/>
43 * <element ref="{urn:uddi-org:api_v3}toKey"/>
44 * <element ref="{urn:uddi-org:api_v3}keyedReference"/>
45 * <element ref="{urn:uddi-org:api_v3}keysOwned"/>
46 * </sequence>
47 * <attribute name="completionStatus" use="required" type="{urn:uddi-org:api_v3}completionStatus" />
48 * </restriction>
49 * </complexContent>
50 * </complexType>
51 * </pre>
52 *
53 *
54 */
55 @XmlAccessorType(XmlAccessType.FIELD)
56 @XmlType(name = "assertionStatusItem", propOrder = {
57 "fromKey",
58 "toKey",
59 "keyedReference",
60 "keysOwned"
61 })
62 @XmlRootElement
63 public class AssertionStatusItem implements Serializable{
64 @XmlTransient
65 private static final long serialVersionUID = 2275087906912814101L;
66 @XmlElement(required = true)
67 protected String fromKey;
68 @XmlElement(required = true)
69 protected String toKey;
70 @XmlElement(required = true)
71 protected KeyedReference keyedReference;
72 @XmlElement(required = true)
73 protected KeysOwned keysOwned;
74 @XmlAttribute(required = true)
75 protected CompletionStatus completionStatus;
76
77 /**
78 * Gets the value of the fromKey property.
79 *
80 * @return
81 * possible object is
82 * {@link String }
83 *
84 */
85 public String getFromKey() {
86 return fromKey;
87 }
88
89 /**
90 * Sets the value of the fromKey property.
91 *
92 * @param value
93 * allowed object is
94 * {@link String }
95 *
96 */
97 public void setFromKey(String value) {
98 this.fromKey = value;
99 }
100
101 /**
102 * Gets the value of the toKey property.
103 *
104 * @return
105 * possible object is
106 * {@link String }
107 *
108 */
109 public String getToKey() {
110 return toKey;
111 }
112
113 /**
114 * Sets the value of the toKey property.
115 *
116 * @param value
117 * allowed object is
118 * {@link String }
119 *
120 */
121 public void setToKey(String value) {
122 this.toKey = value;
123 }
124
125 /**
126 * Gets the value of the keyedReference property.
127 *
128 * @return
129 * possible object is
130 * {@link KeyedReference }
131 *
132 */
133 public KeyedReference getKeyedReference() {
134 return keyedReference;
135 }
136
137 /**
138 * Sets the value of the keyedReference property.
139 *
140 * @param value
141 * allowed object is
142 * {@link KeyedReference }
143 *
144 */
145 public void setKeyedReference(KeyedReference value) {
146 this.keyedReference = value;
147 }
148
149 /**
150 * Gets the value of the keysOwned property.
151 *
152 * @return
153 * possible object is
154 * {@link KeysOwned }
155 *
156 */
157 public KeysOwned getKeysOwned() {
158 return keysOwned;
159 }
160
161 /**
162 * Sets the value of the keysOwned property.
163 *
164 * @param value
165 * allowed object is
166 * {@link KeysOwned }
167 *
168 */
169 public void setKeysOwned(KeysOwned value) {
170 this.keysOwned = value;
171 }
172
173 /**
174 * Gets the value of the completionStatus property.
175 *
176 * @return
177 * possible object is
178 * {@link CompletionStatus }
179 *
180 */
181 public CompletionStatus getCompletionStatus() {
182 return completionStatus;
183 }
184
185 /**
186 * Sets the value of the completionStatus property.
187 *
188 * @param value
189 * allowed object is
190 * {@link CompletionStatus }
191 *
192 */
193 public void setCompletionStatus(CompletionStatus value) {
194 this.completionStatus = value;
195 }
196
197 }