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