This project has retired. For details please refer to its Attic page.
C:\projects\asf\juddi-scout\src\main\java\org\apache\ws\scout\model\uddi\v2\GetBindingDetail.java xref
View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2009.07.19 at 09:49:41 PM CDT 
6   //
7   
8   
9   package org.apache.ws.scout.model.uddi.v2;
10  
11  import java.util.ArrayList;
12  import java.util.List;
13  
14  import javax.xml.bind.annotation.XmlAccessType;
15  import javax.xml.bind.annotation.XmlAccessorType;
16  import javax.xml.bind.annotation.XmlAttribute;
17  import javax.xml.bind.annotation.XmlElement;
18  import javax.xml.bind.annotation.XmlType;
19  
20  
21  /**
22   * <p>Java class for get_bindingDetail complex type.
23   * 
24   * <p>The following schema fragment specifies the expected content contained within this class.
25   * 
26   * <pre>
27   * &lt;complexType name="get_bindingDetail">
28   *   &lt;complexContent>
29   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30   *       &lt;sequence>
31   *         &lt;element ref="{urn:uddi-org:api_v2}bindingKey" maxOccurs="unbounded"/>
32   *       &lt;/sequence>
33   *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "get_bindingDetail", propOrder = {
43      "bindingKey"
44  })
45  public class GetBindingDetail {
46  
47      @XmlElement(required = true)
48      protected List<String> bindingKey;
49      @XmlAttribute(required = true)
50      protected String generic;
51  
52      /**
53       * Gets the value of the bindingKey property.
54       * 
55       * <p>
56       * This accessor method returns a reference to the live list,
57       * not a snapshot. Therefore any modification you make to the
58       * returned list will be present inside the JAXB object.
59       * This is why there is not a <CODE>set</CODE> method for the bindingKey property.
60       * 
61       * <p>
62       * For example, to add a new item, do as follows:
63       * <pre>
64       *    getBindingKey().add(newItem);
65       * </pre>
66       * 
67       * 
68       * <p>
69       * Objects of the following type(s) are allowed in the list
70       * {@link String }
71       * 
72       * 
73       */
74      public List<String> getBindingKey() {
75          if (bindingKey == null) {
76              bindingKey = new ArrayList<String>();
77          }
78          return this.bindingKey;
79      }
80  
81      /**
82       * Gets the value of the generic property.
83       * 
84       * @return
85       *     possible object is
86       *     {@link String }
87       *     
88       */
89      public String getGeneric() {
90          return generic;
91      }
92  
93      /**
94       * Sets the value of the generic property.
95       * 
96       * @param value
97       *     allowed object is
98       *     {@link String }
99       *     
100      */
101     public void setGeneric(String value) {
102         this.generic = value;
103     }
104 
105 }