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