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