This project has retired. For details please refer to its Attic page.
GetRegisteredInfo 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.XmlTransient;
27  import javax.xml.bind.annotation.XmlType;
28  
29  
30  /**
31   * <p>Java class for get_registeredInfo complex type.
32   * 
33   * <p>The following schema fragment specifies the expected content contained within this class.
34   * 
35   * <pre>
36   * &lt;complexType name="get_registeredInfo">
37   *   &lt;complexContent>
38   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39   *       &lt;sequence>
40   *         &lt;element ref="{urn:uddi-org:api_v3}authInfo" minOccurs="0"/>
41   *       &lt;/sequence>
42   *       &lt;attribute name="infoSelection" use="required" type="{urn:uddi-org:api_v3}infoSelection" />
43   *     &lt;/restriction>
44   *   &lt;/complexContent>
45   * &lt;/complexType>
46   * </pre>
47   * 
48   * 
49   */
50  @XmlAccessorType(XmlAccessType.FIELD)
51  @XmlType(name = "get_registeredInfo", propOrder = {
52      "authInfo"
53  })
54  public class GetRegisteredInfo implements Serializable{
55  	@XmlTransient
56  	private static final long serialVersionUID = 6809655852042662369L;
57  	protected String authInfo;
58      @XmlAttribute(required = true)
59      protected InfoSelection infoSelection;
60  
61      /**
62       * Gets the value of the authInfo property.
63       * 
64       * @return
65       *     possible object is
66       *     {@link String }
67       *     
68       */
69      public String getAuthInfo() {
70          return authInfo;
71      }
72  
73      /**
74       * Sets the value of the authInfo property.
75       * 
76       * @param value
77       *     allowed object is
78       *     {@link String }
79       *     
80       */
81      public void setAuthInfo(String value) {
82          this.authInfo = value;
83      }
84  
85      /**
86       * Gets the value of the infoSelection property.
87       * 
88       * @return
89       *     possible object is
90       *     {@link InfoSelection }
91       *     
92       */
93      public InfoSelection getInfoSelection() {
94          return infoSelection;
95      }
96  
97      /**
98       * Sets the value of the infoSelection property.
99       * 
100      * @param value
101      *     allowed object is
102      *     {@link InfoSelection }
103      *     
104      */
105     public void setInfoSelection(InfoSelection value) {
106         this.infoSelection = value;
107     }
108 
109 }