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 package org.uddi.api_v2;
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.XmlAttribute;
24 import javax.xml.bind.annotation.XmlElement;
25 import javax.xml.bind.annotation.XmlType;
26
27
28 /**
29 * <p>Java class for save_tModel complex type.
30 *
31 * <p>The following schema fragment specifies the expected content contained within this class.
32 *
33 * <pre>
34 * <complexType name="save_tModel">
35 * <complexContent>
36 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
37 * <sequence>
38 * <element ref="{urn:uddi-org:api_v2}authInfo"/>
39 * <element ref="{urn:uddi-org:api_v2}tModel" maxOccurs="unbounded" minOccurs="0"/>
40 * <element ref="{urn:uddi-org:api_v2}uploadRegister" maxOccurs="unbounded" minOccurs="0"/>
41 * </sequence>
42 * <attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
43 * </restriction>
44 * </complexContent>
45 * </complexType>
46 * </pre>
47 *
48 *
49 */
50 @XmlAccessorType(XmlAccessType.FIELD)
51 @XmlType(name = "save_tModel", propOrder = {
52 "authInfo",
53 "tModel",
54 "uploadRegister"
55 })
56 public class SaveTModel {
57
58 @XmlElement(required = true)
59 protected String authInfo;
60 protected List<TModel> tModel;
61 protected List<String> uploadRegister;
62 @XmlAttribute(name = "generic", required = true)
63 protected String generic;
64
65 /**
66 * Gets the value of the authInfo property.
67 *
68 * @return
69 * possible object is
70 * {@link String }
71 *
72 */
73 public String getAuthInfo() {
74 return authInfo;
75 }
76
77 /**
78 * Sets the value of the authInfo property.
79 *
80 * @param value
81 * allowed object is
82 * {@link String }
83 *
84 */
85 public void setAuthInfo(String value) {
86 this.authInfo = value;
87 }
88
89 /**
90 * Gets the value of the tModel property.
91 *
92 * <p>
93 * This accessor method returns a reference to the live list,
94 * not a snapshot. Therefore any modification you make to the
95 * returned list will be present inside the JAXB object.
96 * This is why there is not a <CODE>set</CODE> method for the tModel property.
97 *
98 * <p>
99 * For example, to add a new item, do as follows:
100 * <pre>
101 * getTModel().add(newItem);
102 * </pre>
103 *
104 *
105 * <p>
106 * Objects of the following type(s) are allowed in the list
107 * {@link TModel }
108 *
109 *
110 */
111 public List<TModel> getTModel() {
112 if (tModel == null) {
113 tModel = new ArrayList<TModel>();
114 }
115 return this.tModel;
116 }
117
118 /**
119 * Gets the value of the uploadRegister property.
120 *
121 * <p>
122 * This accessor method returns a reference to the live list,
123 * not a snapshot. Therefore any modification you make to the
124 * returned list will be present inside the JAXB object.
125 * This is why there is not a <CODE>set</CODE> method for the uploadRegister property.
126 *
127 * <p>
128 * For example, to add a new item, do as follows:
129 * <pre>
130 * getUploadRegister().add(newItem);
131 * </pre>
132 *
133 *
134 * <p>
135 * Objects of the following type(s) are allowed in the list
136 * {@link String }
137 *
138 *
139 */
140 public List<String> getUploadRegister() {
141 if (uploadRegister == null) {
142 uploadRegister = new ArrayList<String>();
143 }
144 return this.uploadRegister;
145 }
146
147 /**
148 * Gets the value of the generic property.
149 *
150 * @return
151 * possible object is
152 * {@link String }
153 *
154 */
155 public String getGeneric() {
156 return generic;
157 }
158
159 /**
160 * Sets the value of the generic property.
161 *
162 * @param value
163 * allowed object is
164 * {@link String }
165 *
166 */
167 public void setGeneric(String value) {
168 this.generic = value;
169 }
170
171 }