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.XmlTransient;
28 import javax.xml.bind.annotation.XmlType;
29
30
31 /**
32 * <p>Java class for tModelInstanceInfo complex type.
33 *
34 * <p>The following schema fragment specifies the expected content contained within this class.
35 *
36 * <pre>
37 * <complexType name="tModelInstanceInfo">
38 * <complexContent>
39 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
40 * <sequence>
41 * <element ref="{urn:uddi-org:api_v3}description" maxOccurs="unbounded" minOccurs="0"/>
42 * <element ref="{urn:uddi-org:api_v3}instanceDetails" minOccurs="0"/>
43 * </sequence>
44 * <attribute name="tModelKey" use="required" type="{urn:uddi-org:api_v3}tModelKey" />
45 * </restriction>
46 * </complexContent>
47 * </complexType>
48 * </pre>
49 *
50 *
51 */
52 @XmlAccessorType(XmlAccessType.FIELD)
53 @XmlType(name = "tModelInstanceInfo", propOrder = {
54 "description",
55 "instanceDetails"
56 })
57 public class TModelInstanceInfo implements Serializable{
58 @XmlTransient
59 private static final long serialVersionUID = -1642460620530669083L;
60 protected List<Description> description;
61 protected InstanceDetails instanceDetails;
62 @XmlAttribute(required = true)
63 protected String tModelKey;
64
65 /**
66 * Gets the value of the description property.
67 *
68 * <p>
69 * This accessor method returns a reference to the live list,
70 * not a snapshot. Therefore any modification you make to the
71 * returned list will be present inside the JAXB object.
72 * This is why there is not a <CODE>set</CODE> method for the description property.
73 *
74 * <p>
75 * For example, to add a new item, do as follows:
76 * <pre>
77 * getDescription().add(newItem);
78 * </pre>
79 *
80 *
81 * <p>
82 * Objects of the following type(s) are allowed in the list
83 * {@link Description }
84 *
85 *
86 */
87 public List<Description> getDescription() {
88 if (description == null) {
89 description = new ArrayList<Description>();
90 }
91 return this.description;
92 }
93
94 /**
95 * Gets the value of the instanceDetails property.
96 *
97 * @return
98 * possible object is
99 * {@link InstanceDetails }
100 *
101 */
102 public InstanceDetails getInstanceDetails() {
103 return instanceDetails;
104 }
105
106 /**
107 * Sets the value of the instanceDetails property.
108 *
109 * @param value
110 * allowed object is
111 * {@link InstanceDetails }
112 *
113 */
114 public void setInstanceDetails(InstanceDetails value) {
115 this.instanceDetails = value;
116 }
117
118 /**
119 * Gets the value of the tModelKey property.
120 *
121 * @return
122 * possible object is
123 * {@link String }
124 *
125 */
126 public String getTModelKey() {
127 return tModelKey;
128 }
129
130 /**
131 * Sets the value of the tModelKey property.
132 *
133 * @param value
134 * allowed object is
135 * {@link String }
136 *
137 */
138 public void setTModelKey(String value) {
139 this.tModelKey = value;
140 }
141
142 }