This project has retired. For details please refer to its Attic page.
GetBindingDetail 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  import java.util.ArrayList;
23  import java.util.List;
24  import javax.xml.bind.annotation.XmlAccessType;
25  import javax.xml.bind.annotation.XmlAccessorType;
26  import javax.xml.bind.annotation.XmlElement;
27  import javax.xml.bind.annotation.XmlTransient;
28  import javax.xml.bind.annotation.XmlType;
29  
30  
31  /**
32   * <p>Java class for get_bindingDetail complex type.
33   * 
34   * <p>The following schema fragment specifies the expected content contained within this class.
35   * 
36   * <pre>
37   * &lt;complexType name="get_bindingDetail">
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}authInfo" minOccurs="0"/>
42   *         &lt;element ref="{urn:uddi-org:api_v3}bindingKey" maxOccurs="unbounded"/>
43   *       &lt;/sequence>
44   *     &lt;/restriction>
45   *   &lt;/complexContent>
46   * &lt;/complexType>
47   * </pre>
48   * 
49   * 
50   */
51  @XmlAccessorType(XmlAccessType.FIELD)
52  @XmlType(name = "get_bindingDetail", propOrder = {
53      "authInfo",
54      "bindingKey"
55  })
56  public class GetBindingDetail implements Serializable{
57  	@XmlTransient
58  	private static final long serialVersionUID = -1195313688335586992L;
59  
60  	protected String authInfo;
61      @XmlElement(required = true)
62      protected List<String> bindingKey;
63  
64      /**
65       * Gets the value of the authInfo property.
66       * 
67       * @return
68       *     possible object is
69       *     {@link String }
70       *     
71       */
72      public String getAuthInfo() {
73          return authInfo;
74      }
75  
76      /**
77       * Sets the value of the authInfo property.
78       * 
79       * @param value
80       *     allowed object is
81       *     {@link String }
82       *     
83       */
84      public void setAuthInfo(String value) {
85          this.authInfo = value;
86      }
87  
88      /**
89       * Gets the value of the bindingKey property.
90       * 
91       * <p>
92       * This accessor method returns a reference to the live list,
93       * not a snapshot. Therefore any modification you make to the
94       * returned list will be present inside the JAXB object.
95       * This is why there is not a <CODE>set</CODE> method for the bindingKey property.
96       * 
97       * <p>
98       * For example, to add a new item, do as follows:
99       * <pre>
100      *    getBindingKey().add(newItem);
101      * </pre>
102      * 
103      * 
104      * <p>
105      * Objects of the following type(s) are allowed in the list
106      * {@link String }
107      * 
108      * 
109      */
110     public List<String> getBindingKey() {
111         if (bindingKey == null) {
112             bindingKey = new ArrayList<String>();
113         }
114         return this.bindingKey;
115     }
116 
117 }