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\RegisteredInfo.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 registeredInfo complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType name="registeredInfo">
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}businessInfos"/>
29   *         &lt;element ref="{urn:uddi-org:api_v2}tModelInfos"/>
30   *       &lt;/sequence>
31   *       &lt;attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
32   *       &lt;attribute name="operator" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
33   *       &lt;attribute name="truncated" type="{urn:uddi-org:api_v2}truncated" />
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "registeredInfo", propOrder = {
43      "businessInfos",
44      "tModelInfos"
45  })
46  public class RegisteredInfo {
47  
48      @XmlElement(required = true)
49      protected BusinessInfos businessInfos;
50      @XmlElement(required = true)
51      protected TModelInfos tModelInfos;
52      @XmlAttribute(required = true)
53      protected String generic;
54      @XmlAttribute(required = true)
55      protected String operator;
56      @XmlAttribute
57      protected Truncated truncated;
58  
59      /**
60       * Gets the value of the businessInfos property.
61       * 
62       * @return
63       *     possible object is
64       *     {@link BusinessInfos }
65       *     
66       */
67      public BusinessInfos getBusinessInfos() {
68          return businessInfos;
69      }
70  
71      /**
72       * Sets the value of the businessInfos property.
73       * 
74       * @param value
75       *     allowed object is
76       *     {@link BusinessInfos }
77       *     
78       */
79      public void setBusinessInfos(BusinessInfos value) {
80          this.businessInfos = value;
81      }
82  
83      /**
84       * Gets the value of the tModelInfos property.
85       * 
86       * @return
87       *     possible object is
88       *     {@link TModelInfos }
89       *     
90       */
91      public TModelInfos getTModelInfos() {
92          return tModelInfos;
93      }
94  
95      /**
96       * Sets the value of the tModelInfos property.
97       * 
98       * @param value
99       *     allowed object is
100      *     {@link TModelInfos }
101      *     
102      */
103     public void setTModelInfos(TModelInfos value) {
104         this.tModelInfos = value;
105     }
106 
107     /**
108      * Gets the value of the generic property.
109      * 
110      * @return
111      *     possible object is
112      *     {@link String }
113      *     
114      */
115     public String getGeneric() {
116         return generic;
117     }
118 
119     /**
120      * Sets the value of the generic property.
121      * 
122      * @param value
123      *     allowed object is
124      *     {@link String }
125      *     
126      */
127     public void setGeneric(String value) {
128         this.generic = value;
129     }
130 
131     /**
132      * Gets the value of the operator property.
133      * 
134      * @return
135      *     possible object is
136      *     {@link String }
137      *     
138      */
139     public String getOperator() {
140         return operator;
141     }
142 
143     /**
144      * Sets the value of the operator property.
145      * 
146      * @param value
147      *     allowed object is
148      *     {@link String }
149      *     
150      */
151     public void setOperator(String value) {
152         this.operator = value;
153     }
154 
155     /**
156      * Gets the value of the truncated property.
157      * 
158      * @return
159      *     possible object is
160      *     {@link Truncated }
161      *     
162      */
163     public Truncated getTruncated() {
164         return truncated;
165     }
166 
167     /**
168      * Sets the value of the truncated property.
169      * 
170      * @param value
171      *     allowed object is
172      *     {@link Truncated }
173      *     
174      */
175     public void setTruncated(Truncated value) {
176         this.truncated = value;
177     }
178 
179 }