This project has retired. For details please refer to its Attic page.
RegisteredInfo 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  
23  import javax.xml.bind.annotation.XmlAccessType;
24  import javax.xml.bind.annotation.XmlAccessorType;
25  import javax.xml.bind.annotation.XmlAttribute;
26  import javax.xml.bind.annotation.XmlRootElement;
27  import javax.xml.bind.annotation.XmlTransient;
28  import javax.xml.bind.annotation.XmlType;
29  
30  
31  /**
32   * <p>Java class for registeredInfo complex type.
33   * 
34   * <p>The following schema fragment specifies the expected content contained within this class.
35   * 
36   * <pre>
37   * &lt;complexType name="registeredInfo">
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}businessInfos" minOccurs="0"/>
42   *         &lt;element ref="{urn:uddi-org:api_v3}tModelInfos" minOccurs="0"/>
43   *       &lt;/sequence>
44   *       &lt;attribute name="truncated" type="{urn:uddi-org:api_v3}truncated" />
45   *     &lt;/restriction>
46   *   &lt;/complexContent>
47   * &lt;/complexType>
48   * </pre>
49   * 
50   * 
51   */
52  @XmlAccessorType(XmlAccessType.FIELD)
53  @XmlType(name = "registeredInfo", propOrder = {
54      "businessInfos",
55      "tModelInfos"
56  })
57  @XmlRootElement
58  public class RegisteredInfo implements Serializable{
59  	@XmlTransient
60  	private static final long serialVersionUID = -7441622376996526628L;
61  	protected BusinessInfos businessInfos;
62      protected TModelInfos tModelInfos;
63      @XmlAttribute
64      protected Boolean truncated;
65  
66      /**
67       * Gets the value of the businessInfos property.
68       * 
69       * @return
70       *     possible object is
71       *     {@link BusinessInfos }
72       *     
73       */
74      public BusinessInfos getBusinessInfos() {
75          return businessInfos;
76      }
77  
78      /**
79       * Sets the value of the businessInfos property.
80       * 
81       * @param value
82       *     allowed object is
83       *     {@link BusinessInfos }
84       *     
85       */
86      public void setBusinessInfos(BusinessInfos value) {
87          this.businessInfos = value;
88      }
89  
90      /**
91       * Gets the value of the tModelInfos property.
92       * 
93       * @return
94       *     possible object is
95       *     {@link TModelInfos }
96       *     
97       */
98      public TModelInfos getTModelInfos() {
99          return tModelInfos;
100     }
101 
102     /**
103      * Sets the value of the tModelInfos property.
104      * 
105      * @param value
106      *     allowed object is
107      *     {@link TModelInfos }
108      *     
109      */
110     public void setTModelInfos(TModelInfos value) {
111         this.tModelInfos = value;
112     }
113 
114     /**
115      * Gets the value of the truncated property.
116      * 
117      * @return
118      *     possible object is
119      *     {@link Boolean }
120      *     
121      */
122     public Boolean isTruncated() {
123         return truncated;
124     }
125 
126     /**
127      * Sets the value of the truncated property.
128      * 
129      * @param value
130      *     allowed object is
131      *     {@link Boolean }
132      *     
133      */
134     public void setTruncated(Boolean value) {
135         this.truncated = value;
136     }
137 
138 }