View Javadoc

1   /*
2    * Copyright 2001-2004 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  package org.apache.juddi.datatype.publisher;
17  
18  import org.apache.juddi.datatype.RegistryObject;
19  
20  /***
21   * @author Steve Viens (sviens@apache.org)
22   */
23  public class PublisherID implements RegistryObject
24  {
25    String keyValue;
26  
27    /***
28     * Construct a new initialized PublisherID instance.
29     */
30    public PublisherID()
31    {
32    }
33  
34    /***
35     * Construct a new PublisherID with a given value.
36     *
37     * @param keyValue The PublisherID of the new value.
38     */
39    public PublisherID(String keyValue)
40    {
41      setValue(keyValue);
42    }
43  
44    /***
45     * Sets the value of this PublisherID to the new value.
46     *
47     * @param newValue The new key value for this PublisherID.
48     */
49    public void setValue(String newValue)
50    {
51      this.keyValue = newValue;
52    }
53  
54    /***
55     * Returns the value of this PublisherID as a String.
56     *
57     * @return The value of this PublisherID.
58     */
59    public String getValue()
60    {
61      return this.keyValue;
62    }
63  }