This project has retired. For details please refer to its Attic page.
SetReplicationNodes xref
View Javadoc
1   /*
2    * Copyright 2001-2009 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  package org.apache.juddi.api_v3;
18  
19  import javax.xml.bind.annotation.XmlAccessType;
20  import javax.xml.bind.annotation.XmlAccessorType;
21  import javax.xml.bind.annotation.XmlElement;
22  import javax.xml.bind.annotation.XmlType;
23  import org.uddi.repl_v3.ReplicationConfiguration;
24  
25  
26  /**
27   * <p>Java class for set_ReplicationNodes complex type.
28   * 
29   * <p>The following schema fragment specifies the expected content contained within this class.
30   * 
31   * <pre>
32   * &lt;complexType name="set_ReplicationNodes">
33   *   &lt;complexContent>
34   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35   *       &lt;sequence>
36   *         &lt;element name="authInfo" type="{http://www.w3.org/2001/XMLSchema}string"/>
37   *         &lt;element ref="{urn:uddi-org:repl_v3}replicationConfiguration"/>
38   *       &lt;/sequence>
39   *     &lt;/restriction>
40   *   &lt;/complexContent>
41   * &lt;/complexType>
42   * </pre>
43   * 
44   * 
45   */
46  @XmlAccessorType(XmlAccessType.FIELD)
47  @XmlType(name = "set_ReplicationNodes", propOrder = {
48      "authInfo",
49      "replicationConfiguration"
50  })
51  public class SetReplicationNodes {
52  
53      @XmlElement(required = true)
54      protected String authInfo;
55      @XmlElement(namespace = "urn:uddi-org:repl_v3", required = true)
56      protected ReplicationConfiguration replicationConfiguration;
57  
58      /**
59       * Gets the value of the authInfo property.
60       * 
61       * @return
62       *     possible object is
63       *     {@link String }
64       *     
65       */
66      public String getAuthInfo() {
67          return authInfo;
68      }
69  
70      /**
71       * Sets the value of the authInfo property.
72       * 
73       * @param value
74       *     allowed object is
75       *     {@link String }
76       *     
77       */
78      public void setAuthInfo(String value) {
79          this.authInfo = value;
80      }
81  
82      /**
83       * Gets the value of the replicationConfiguration property.
84       * 
85       * @return
86       *     possible object is
87       *     {@link ReplicationConfiguration }
88       *     
89       */
90      public ReplicationConfiguration getReplicationConfiguration() {
91          return replicationConfiguration;
92      }
93  
94      /**
95       * Sets the value of the replicationConfiguration property.
96       * 
97       * @param value
98       *     allowed object is
99       *     {@link ReplicationConfiguration }
100      *     
101      */
102     public void setReplicationConfiguration(ReplicationConfiguration value) {
103         this.replicationConfiguration = value;
104     }
105 
106 }