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.XmlType;
22
23
24 /**
25 * <p>Java class for clerk complex type.
26 *
27 * <p>The following schema fragment specifies the expected content contained within this class.
28 *
29 * <pre>
30 * <complexType name="clerk">
31 * <complexContent>
32 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33 * <sequence>
34 * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
35 * <element name="node" type="{urn:juddi-apache-org:api_v3}node" minOccurs="0"/>
36 * <element name="publisher" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
37 * <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
38 * </sequence>
39 * </restriction>
40 * </complexContent>
41 * </complexType>
42 * </pre>
43 *
44 *
45 */
46 @XmlAccessorType(XmlAccessType.FIELD)
47 @XmlType(name = "clerk", propOrder = {
48 "name",
49 "node",
50 "publisher",
51 "password"
52 })
53 public class Clerk {
54
55 protected String name;
56 protected Node node;
57 protected String publisher;
58 protected String password;
59
60 /**
61 * Gets the value of the name property.
62 *
63 * @return
64 * possible object is
65 * {@link String }
66 *
67 */
68 public String getName() {
69 return name;
70 }
71
72 /**
73 * Sets the value of the name property.
74 *
75 * @param value
76 * allowed object is
77 * {@link String }
78 *
79 */
80 public void setName(String value) {
81 this.name = value;
82 }
83
84 /**
85 * Gets the value of the node property.
86 *
87 * @return
88 * possible object is
89 * {@link Node }
90 *
91 */
92 public Node getNode() {
93 return node;
94 }
95
96 /**
97 * Sets the value of the node property.
98 *
99 * @param value
100 * allowed object is
101 * {@link Node }
102 *
103 */
104 public void setNode(Node value) {
105 this.node = value;
106 }
107
108 /**
109 * Gets the value of the publisher property.
110 *
111 * @return
112 * possible object is
113 * {@link String }
114 *
115 */
116 public String getPublisher() {
117 return publisher;
118 }
119
120 /**
121 * Sets the value of the publisher property.
122 *
123 * @param value
124 * allowed object is
125 * {@link String }
126 *
127 */
128 public void setPublisher(String value) {
129 this.publisher = value;
130 }
131
132 /**
133 * Gets the value of the password property.
134 *
135 * @return
136 * possible object is
137 * {@link String }
138 *
139 */
140 public String getPassword() {
141 return password;
142 }
143
144 /**
145 * Sets the value of the password property.
146 *
147 * @param value
148 * allowed object is
149 * {@link String }
150 *
151 */
152 public void setPassword(String value) {
153 this.password = value;
154 }
155
156 }