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