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
24
25 /**
26 * <p>Java class for delete_Node complex type.
27 *
28 * <p>The following schema fragment specifies the expected content contained within this class.
29 *
30 * <pre>
31 * <complexType name="delete_Node">
32 * <complexContent>
33 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
34 * <sequence>
35 * <element name="authInfo" type="{http://www.w3.org/2001/XMLSchema}string"/>
36 * <element name="nodeID" type="{http://www.w3.org/2001/XMLSchema}string"/>
37 * </sequence>
38 * </restriction>
39 * </complexContent>
40 * </complexType>
41 * </pre>
42 *
43 *
44 */
45 @XmlAccessorType(XmlAccessType.FIELD)
46 @XmlType(name = "delete_Node", propOrder = {
47 "authInfo",
48 "nodeID"
49 })
50 public class DeleteNode {
51
52 public DeleteNode(){}
53 public DeleteNode(String auth, String nodeid){
54 authInfo=auth;
55 nodeID = nodeid;
56 }
57 @XmlElement(required = true)
58 protected String authInfo;
59 @XmlElement(required = true)
60 protected String nodeID;
61
62 /**
63 * Gets the value of the authInfo property.
64 *
65 * @return
66 * possible object is
67 * {@link String }
68 *
69 */
70 public String getAuthInfo() {
71 return authInfo;
72 }
73
74 /**
75 * Sets the value of the authInfo property.
76 *
77 * @param value
78 * allowed object is
79 * {@link String }
80 *
81 */
82 public void setAuthInfo(String value) {
83 this.authInfo = value;
84 }
85
86 /**
87 * Gets the value of the nodeID property.
88 *
89 * @return
90 * possible object is
91 * {@link String }
92 *
93 */
94 public String getNodeID() {
95 return nodeID;
96 }
97
98 /**
99 * Sets the value of the nodeID property.
100 *
101 * @param value
102 * allowed object is
103 * {@link String }
104 *
105 */
106 public void setNodeID(String value) {
107 this.nodeID = value;
108 }
109
110 }