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\TModelList.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 javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for tModelList complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType name="tModelList">
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;sequence>
28   *         &lt;element ref="{urn:uddi-org:api_v2}tModelInfos"/>
29   *       &lt;/sequence>
30   *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
31   *       &lt;attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
32   *       &lt;attribute name="truncated" type="{urn:uddi-org:api_v2}truncated" />
33   *     &lt;/restriction>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
37   * 
38   * 
39   */
40  @XmlAccessorType(XmlAccessType.FIELD)
41  @XmlType(name = "tModelList", propOrder = {
42      "tModelInfos"
43  })
44  public class TModelList {
45  
46      @XmlElement(required = true)
47      protected TModelInfos tModelInfos;
48      @XmlAttribute(required = true)
49      protected String generic;
50      @XmlAttribute(required = true)
51      protected String operator;
52      @XmlAttribute
53      protected Truncated truncated;
54  
55      /**
56       * Gets the value of the tModelInfos property.
57       * 
58       * @return
59       *     possible object is
60       *     {@link TModelInfos }
61       *     
62       */
63      public TModelInfos getTModelInfos() {
64          return tModelInfos;
65      }
66  
67      /**
68       * Sets the value of the tModelInfos property.
69       * 
70       * @param value
71       *     allowed object is
72       *     {@link TModelInfos }
73       *     
74       */
75      public void setTModelInfos(TModelInfos value) {
76          this.tModelInfos = value;
77      }
78  
79      /**
80       * Gets the value of the generic property.
81       * 
82       * @return
83       *     possible object is
84       *     {@link String }
85       *     
86       */
87      public String getGeneric() {
88          return generic;
89      }
90  
91      /**
92       * Sets the value of the generic property.
93       * 
94       * @param value
95       *     allowed object is
96       *     {@link String }
97       *     
98       */
99      public void setGeneric(String value) {
100         this.generic = value;
101     }
102 
103     /**
104      * Gets the value of the operator property.
105      * 
106      * @return
107      *     possible object is
108      *     {@link String }
109      *     
110      */
111     public String getOperator() {
112         return operator;
113     }
114 
115     /**
116      * Sets the value of the operator property.
117      * 
118      * @param value
119      *     allowed object is
120      *     {@link String }
121      *     
122      */
123     public void setOperator(String value) {
124         this.operator = value;
125     }
126 
127     /**
128      * Gets the value of the truncated property.
129      * 
130      * @return
131      *     possible object is
132      *     {@link Truncated }
133      *     
134      */
135     public Truncated getTruncated() {
136         return truncated;
137     }
138 
139     /**
140      * Sets the value of the truncated property.
141      * 
142      * @param value
143      *     allowed object is
144      *     {@link Truncated }
145      *     
146      */
147     public void setTruncated(Truncated value) {
148         this.truncated = value;
149     }
150 
151 }