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.vscache_v3;
20
21 import java.io.Serializable;
22 import java.util.ArrayList;
23 import java.util.List;
24 import javax.xml.bind.annotation.XmlAccessType;
25 import javax.xml.bind.annotation.XmlAccessorType;
26 import javax.xml.bind.annotation.XmlTransient;
27 import javax.xml.bind.annotation.XmlType;
28
29
30 /**
31 * <p>Java class for validValuesList complex type.
32 *
33 * <p>The following schema fragment specifies the expected content contained within this class.
34 *
35 * <pre>
36 * <complexType name="validValuesList">
37 * <complexContent>
38 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39 * <sequence>
40 * <element ref="{urn:uddi-org:vscache_v3}chunkToken" minOccurs="0"/>
41 * <element ref="{urn:uddi-org:vscache_v3}validValue" maxOccurs="unbounded" minOccurs="0"/>
42 * </sequence>
43 * </restriction>
44 * </complexContent>
45 * </complexType>
46 * </pre>
47 *
48 *
49 */
50 @XmlAccessorType(XmlAccessType.FIELD)
51 @XmlType(name = "validValuesList", propOrder = {
52 "chunkToken",
53 "validValue"
54 })
55 public class ValidValuesList implements Serializable{
56 @XmlTransient
57 private static final long serialVersionUID = 2508003803603481625L;
58 protected String chunkToken;
59 protected List<ValidValue> validValue;
60
61 /**
62 * Gets the value of the chunkToken property.
63 *
64 * @return
65 * possible object is
66 * {@link String }
67 *
68 */
69 public String getChunkToken() {
70 return chunkToken;
71 }
72
73 /**
74 * Sets the value of the chunkToken property.
75 *
76 * @param value
77 * allowed object is
78 * {@link String }
79 *
80 */
81 public void setChunkToken(String value) {
82 this.chunkToken = value;
83 }
84
85 /**
86 * Gets the value of the validValue property.
87 *
88 * <p>
89 * This accessor method returns a reference to the live list,
90 * not a snapshot. Therefore any modification you make to the
91 * returned list will be present inside the JAXB object.
92 * This is why there is not a <CODE>set</CODE> method for the validValue property.
93 *
94 * <p>
95 * For example, to add a new item, do as follows:
96 * <pre>
97 * getValidValue().add(newItem);
98 * </pre>
99 *
100 *
101 * <p>
102 * Objects of the following type(s) are allowed in the list
103 * {@link ValidValue }
104 *
105 *
106 */
107 public List<ValidValue> getValidValue() {
108 if (validValue == null) {
109 validValue = new ArrayList<ValidValue>();
110 }
111 return this.validValue;
112 }
113
114 }