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 get_ReplicationNodesResponse complex type.
28 *
29 * <p>The following schema fragment specifies the expected content contained within this class.
30 *
31 * <pre>
32 * <complexType name="get_ReplicationNodesResponse">
33 * <complexContent>
34 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35 * <sequence>
36 * <element ref="{urn:uddi-org:repl_v3}replicationConfiguration"/>
37 * </sequence>
38 * </restriction>
39 * </complexContent>
40 * </complexType>
41 * </pre>
42 *
43 *
44 */
45 @XmlAccessorType(XmlAccessType.FIELD)
46 @XmlType(name = "get_ReplicationNodesResponse", propOrder = {
47 "replicationConfiguration"
48 })
49 public class GetReplicationNodesResponse {
50
51 @XmlElement(namespace = "urn:uddi-org:repl_v3", required = true)
52 protected ReplicationConfiguration replicationConfiguration;
53
54 /**
55 * Gets the value of the replicationConfiguration property.
56 *
57 * @return
58 * possible object is
59 * {@link ReplicationConfiguration }
60 *
61 */
62 public ReplicationConfiguration getReplicationConfiguration() {
63 return replicationConfiguration;
64 }
65
66 /**
67 * Sets the value of the replicationConfiguration property.
68 *
69 * @param value
70 * allowed object is
71 * {@link ReplicationConfiguration }
72 *
73 */
74 public void setReplicationConfiguration(ReplicationConfiguration value) {
75 this.replicationConfiguration = value;
76 }
77
78 }