This project has retired. For details please refer to its Attic page.
AdminSaveBusiness xref
View Javadoc
1   /*
2    * Copyright 2001-2009 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.apache.juddi.api_v3;
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 adminSave_Business complex type.
28   * 
29   * <p>The following schema fragment specifies the expected content contained within this class.
30   * 
31   * <pre>
32   * &lt;complexType name="adminSave_Business">
33   *   &lt;complexContent>
34   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35   *       &lt;sequence>
36   *         &lt;element name="authInfo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
37   *         &lt;element name="values" type="{urn:juddi-apache-org:api_v3}adminSave_BusinessWrapper" maxOccurs="unbounded" minOccurs="0"/>
38   *       &lt;/sequence>
39   *     &lt;/restriction>
40   *   &lt;/complexContent>
41   * &lt;/complexType>
42   * </pre>
43   * 
44   * 
45   */
46  @XmlAccessorType(XmlAccessType.FIELD)
47  @XmlType(name = "adminSave_Business", propOrder = {
48      "authInfo",
49      "values"
50  })
51  public class AdminSaveBusiness {
52  
53      protected String authInfo;
54      protected List<AdminSaveBusinessWrapper> values;
55  
56      /**
57       * Gets the value of the authInfo property.
58       * 
59       * @return
60       *     possible object is
61       *     {@link String }
62       *     
63       */
64      public String getAuthInfo() {
65          return authInfo;
66      }
67  
68      /**
69       * Sets the value of the authInfo property.
70       * 
71       * @param value
72       *     allowed object is
73       *     {@link String }
74       *     
75       */
76      public void setAuthInfo(String value) {
77          this.authInfo = value;
78      }
79  
80      /**
81       * Gets the value of the values property.
82       * 
83       * <p>
84       * This accessor method returns a reference to the live list,
85       * not a snapshot. Therefore any modification you make to the
86       * returned list will be present inside the JAXB object.
87       * This is why there is not a <CODE>set</CODE> method for the values property.
88       * 
89       * <p>
90       * For example, to add a new item, do as follows:
91       * <pre>
92       *    getValues().add(newItem);
93       * </pre>
94       * 
95       * 
96       * <p>
97       * Objects of the following type(s) are allowed in the list
98       * {@link AdminSaveBusinessWrapper }
99       * 
100      * 
101      */
102     public List<AdminSaveBusinessWrapper> getValues() {
103         if (values == null) {
104             values = new ArrayList<AdminSaveBusinessWrapper>();
105         }
106         return this.values;
107     }
108 
109 }