KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > activemq > command > BrokerId


1 /**
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one or more
4  * contributor license agreements. See the NOTICE file distributed with
5  * this work for additional information regarding copyright ownership.
6  * The ASF licenses this file to You under the Apache License, Version 2.0
7  * (the "License"); you may not use this file except in compliance with
8  * the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */

18 package org.apache.activemq.command;
19
20
21 /**
22  *
23  * @openwire:marshaller code="124"
24  * @version $Revision$
25  */

26 public class BrokerId implements DataStructure {
27     
28     public static final byte DATA_STRUCTURE_TYPE=CommandTypes.BROKER_ID;
29     protected String JavaDoc value;
30     
31     public BrokerId() {
32     }
33     
34     public BrokerId(String JavaDoc brokerId) {
35         this.value = brokerId;
36     }
37     
38     public int hashCode() {
39         return value.hashCode();
40     }
41     
42     public boolean equals(Object JavaDoc o) {
43         if( this == o )
44             return true;
45         if( o == null || o.getClass()!=BrokerId.class )
46             return false;
47         BrokerId id = (BrokerId) o;
48         return value.equals(id.value);
49     }
50     
51     public byte getDataStructureType() {
52         return DATA_STRUCTURE_TYPE;
53     }
54
55     public String JavaDoc toString() {
56         return value;
57     }
58
59     /**
60      * @openwire:property version=1
61      */

62     public String JavaDoc getValue() {
63         return value;
64     }
65     public void setValue(String JavaDoc brokerId) {
66         this.value = brokerId;
67     }
68
69     public boolean isMarshallAware() {
70         return false;
71     }
72 }
73
Popular Tags