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.sub_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.XmlElement;
26 import javax.xml.bind.annotation.XmlTransient;
27 import javax.xml.bind.annotation.XmlType;
28
29
30 /**
31 * <p>Java class for get_subscriptionResults complex type.
32 *
33 * <p>The following schema fragment specifies the expected content contained within this class.
34 *
35 * <pre>
36 * <complexType name="get_subscriptionResults">
37 * <complexContent>
38 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 * <sequence>
40 * <element ref="{urn:uddi-org:api_v3}authInfo" minOccurs="0"/>
41 * <element ref="{urn:uddi-org:sub_v3}subscriptionKey"/>
42 * <element ref="{urn:uddi-org:sub_v3}coveragePeriod"/>
43 * <element ref="{urn:uddi-org:sub_v3}chunkToken" minOccurs="0"/>
44 * </sequence>
45 * </restriction>
46 * </complexContent>
47 * </complexType>
48 * </pre>
49 *
50 *
51 */
52 @XmlAccessorType(XmlAccessType.FIELD)
53 @XmlType(name = "get_subscriptionResults", propOrder = {
54 "authInfo",
55 "subscriptionKey",
56 "coveragePeriod",
57 "chunkToken"
58 })
59 public class GetSubscriptionResults implements Serializable{
60 @XmlTransient
61 private static final long serialVersionUID = 1677722415954673870L;
62 @XmlElement(namespace = "urn:uddi-org:api_v3")
63 protected String authInfo;
64 @XmlElement(required = true)
65 protected String subscriptionKey;
66 @XmlElement(required = true)
67 protected CoveragePeriod coveragePeriod;
68 protected String chunkToken;
69
70 /**
71 * Gets the value of the authInfo property.
72 *
73 * @return
74 * possible object is
75 * {@link String }
76 *
77 */
78 public String getAuthInfo() {
79 return authInfo;
80 }
81
82 /**
83 * Sets the value of the authInfo property.
84 *
85 * @param value
86 * allowed object is
87 * {@link String }
88 *
89 */
90 public void setAuthInfo(String value) {
91 this.authInfo = value;
92 }
93
94 /**
95 * Gets the value of the subscriptionKey property.
96 *
97 * @return
98 * possible object is
99 * {@link String }
100 *
101 */
102 public String getSubscriptionKey() {
103 return subscriptionKey;
104 }
105
106 /**
107 * Sets the value of the subscriptionKey property.
108 *
109 * @param value
110 * allowed object is
111 * {@link String }
112 *
113 */
114 public void setSubscriptionKey(String value) {
115 this.subscriptionKey = value;
116 }
117
118 /**
119 * Gets the value of the coveragePeriod property.
120 *
121 * @return
122 * possible object is
123 * {@link CoveragePeriod }
124 *
125 */
126 public CoveragePeriod getCoveragePeriod() {
127 return coveragePeriod;
128 }
129
130 /**
131 * Sets the value of the coveragePeriod property.
132 *
133 * @param value
134 * allowed object is
135 * {@link CoveragePeriod }
136 *
137 */
138 public void setCoveragePeriod(CoveragePeriod value) {
139 this.coveragePeriod = value;
140 }
141
142 /**
143 * Gets the value of the chunkToken property.
144 *
145 * @return
146 * possible object is
147 * {@link String }
148 *
149 */
150 public String getChunkToken() {
151 return chunkToken;
152 }
153
154 /**
155 * Sets the value of the chunkToken property.
156 *
157 * @param value
158 * allowed object is
159 * {@link String }
160 *
161 */
162 public void setChunkToken(String value) {
163 this.chunkToken = value;
164 }
165
166 }