This project has retired. For details please refer to its Attic page.
RelatedBusinessInfos 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  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 relatedBusinessInfos complex type.
28   * 
29   * <p>The following schema fragment specifies the expected content contained within this class.
30   * 
31   * <pre>
32   * &lt;complexType name="relatedBusinessInfos">
33   *   &lt;complexContent>
34   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35   *       &lt;sequence>
36   *         &lt;element ref="{urn:uddi-org:api_v2}relatedBusinessInfo" maxOccurs="unbounded" minOccurs="0"/>
37   *       &lt;/sequence>
38   *     &lt;/restriction>
39   *   &lt;/complexContent>
40   * &lt;/complexType>
41   * </pre>
42   * 
43   * 
44   */
45  @XmlAccessorType(XmlAccessType.FIELD)
46  @XmlType(name = "relatedBusinessInfos", propOrder = {
47      "relatedBusinessInfo"
48  })
49  public class RelatedBusinessInfos {
50  
51      protected List<RelatedBusinessInfo> relatedBusinessInfo;
52  
53      /**
54       * Gets the value of the relatedBusinessInfo property.
55       * 
56       * <p>
57       * This accessor method returns a reference to the live list,
58       * not a snapshot. Therefore any modification you make to the
59       * returned list will be present inside the JAXB object.
60       * This is why there is not a <CODE>set</CODE> method for the relatedBusinessInfo property.
61       * 
62       * <p>
63       * For example, to add a new item, do as follows:
64       * <pre>
65       *    getRelatedBusinessInfo().add(newItem);
66       * </pre>
67       * 
68       * 
69       * <p>
70       * Objects of the following type(s) are allowed in the list
71       * {@link RelatedBusinessInfo }
72       * 
73       * 
74       */
75      public List<RelatedBusinessInfo> getRelatedBusinessInfo() {
76          if (relatedBusinessInfo == null) {
77              relatedBusinessInfo = new ArrayList<RelatedBusinessInfo>();
78          }
79          return this.relatedBusinessInfo;
80      }
81  
82  }