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 overviewDoc complex type.
28 *
29 * <p>The following schema fragment specifies the expected content contained within this class.
30 *
31 * <pre>
32 * <complexType name="overviewDoc">
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}overviewURL" minOccurs="0"/>
38 * </sequence>
39 * </restriction>
40 * </complexContent>
41 * </complexType>
42 * </pre>
43 *
44 *
45 */
46 @XmlAccessorType(XmlAccessType.FIELD)
47 @XmlType(name = "overviewDoc", propOrder = {
48 "description",
49 "overviewURL"
50 })
51 public class OverviewDoc {
52
53 protected List<Description> description;
54 protected String overviewURL;
55
56 /**
57 * Gets the value of the description property.
58 *
59 * <p>
60 * This accessor method returns a reference to the live list,
61 * not a snapshot. Therefore any modification you make to the
62 * returned list will be present inside the JAXB object.
63 * This is why there is not a <CODE>set</CODE> method for the description property.
64 *
65 * <p>
66 * For example, to add a new item, do as follows:
67 * <pre>
68 * getDescription().add(newItem);
69 * </pre>
70 *
71 *
72 * <p>
73 * Objects of the following type(s) are allowed in the list
74 * {@link Description }
75 *
76 *
77 */
78 public List<Description> getDescription() {
79 if (description == null) {
80 description = new ArrayList<Description>();
81 }
82 return this.description;
83 }
84
85 /**
86 * Gets the value of the overviewURL property.
87 *
88 * @return
89 * possible object is
90 * {@link String }
91 *
92 */
93 public String getOverviewURL() {
94 return overviewURL;
95 }
96
97 /**
98 * Sets the value of the overviewURL property.
99 *
100 * @param value
101 * allowed object is
102 * {@link String }
103 *
104 */
105 public void setOverviewURL(String value) {
106 this.overviewURL = value;
107 }
108
109 }