This project has retired. For details please refer to its Attic page.
BusinessList xref
View Javadoc
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  
23  import javax.xml.bind.annotation.XmlAccessType;
24  import javax.xml.bind.annotation.XmlAccessorType;
25  import javax.xml.bind.annotation.XmlAttribute;
26  import javax.xml.bind.annotation.XmlRootElement;
27  import javax.xml.bind.annotation.XmlTransient;
28  import javax.xml.bind.annotation.XmlType;
29  
30  
31  /**
32   * <p>Java class for businessList complex type.
33   * 
34   * <p>The following schema fragment specifies the expected content contained within this class.
35   * 
36   * <pre>
37   * &lt;complexType name="businessList">
38   *   &lt;complexContent>
39   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
40   *       &lt;sequence>
41   *         &lt;element ref="{urn:uddi-org:api_v3}listDescription" minOccurs="0"/>
42   *         &lt;element ref="{urn:uddi-org:api_v3}businessInfos" minOccurs="0"/>
43   *       &lt;/sequence>
44   *       &lt;attribute name="truncated" type="{urn:uddi-org:api_v3}truncated" />
45   *     &lt;/restriction>
46   *   &lt;/complexContent>
47   * &lt;/complexType>
48   * </pre>
49   * 
50   * 
51   */
52  @XmlAccessorType(XmlAccessType.FIELD)
53  @XmlType(name = "businessList", propOrder = {
54      "listDescription",
55      "businessInfos"
56  })
57  @XmlRootElement
58  public class BusinessList implements Serializable{
59  	@XmlTransient
60  	private static final long serialVersionUID = -7650531142241444489L;
61  	protected ListDescription listDescription;
62      protected BusinessInfos businessInfos;
63      @XmlAttribute
64      protected Boolean truncated;
65  
66      /**
67       * Gets the value of the listDescription property.
68       * 
69       * @return
70       *     possible object is
71       *     {@link ListDescription }
72       *     
73       */
74      public ListDescription getListDescription() {
75          return listDescription;
76      }
77  
78      /**
79       * Sets the value of the listDescription property.
80       * 
81       * @param value
82       *     allowed object is
83       *     {@link ListDescription }
84       *     
85       */
86      public void setListDescription(ListDescription value) {
87          this.listDescription = value;
88      }
89  
90      /**
91       * Gets the value of the businessInfos property.
92       * 
93       * @return
94       *     possible object is
95       *     {@link BusinessInfos }
96       *     
97       */
98      public BusinessInfos getBusinessInfos() {
99          return businessInfos;
100     }
101 
102     /**
103      * Sets the value of the businessInfos property.
104      * 
105      * @param value
106      *     allowed object is
107      *     {@link BusinessInfos }
108      *     
109      */
110     public void setBusinessInfos(BusinessInfos value) {
111         this.businessInfos = value;
112     }
113 
114     /**
115      * Gets the value of the truncated property.
116      * 
117      * @return
118      *     possible object is
119      *     {@link Boolean }
120      *     
121      */
122     public Boolean isTruncated() {
123         return truncated;
124     }
125 
126     /**
127      * Sets the value of the truncated property.
128      * 
129      * @param value
130      *     allowed object is
131      *     {@link Boolean }
132      *     
133      */
134     public void setTruncated(Boolean value) {
135         this.truncated = value;
136     }
137 
138 }