KickJava   Java API By Example, From Geeks To Geeks.

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


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="120"
24  * @version $Revision$
25  */

26 public class ConnectionId implements DataStructure, Comparable JavaDoc<ConnectionId> {
27     
28     public static final byte DATA_STRUCTURE_TYPE=CommandTypes.CONNECTION_ID;
29     
30     protected String JavaDoc value;
31     
32     public ConnectionId() {
33     }
34     
35     public ConnectionId(String JavaDoc connectionId) {
36         this.value = connectionId;
37     }
38     
39     public ConnectionId(ConnectionId id) {
40         this.value = id.getValue();
41     }
42
43     public ConnectionId(SessionId id) {
44         this.value = id.getConnectionId();
45     }
46
47     public ConnectionId(ProducerId id) {
48         this.value = id.getConnectionId();
49     }
50     
51     public ConnectionId(ConsumerId id) {
52         this.value = id.getConnectionId();
53     }
54
55     public int hashCode() {
56         return value.hashCode();
57     }
58     
59     public boolean equals(Object JavaDoc o) {
60         if( this == o )
61             return true;
62         if( o == null || o.getClass()!=ConnectionId.class )
63             return false;
64         ConnectionId id = (ConnectionId) o;
65         return value.equals(id.value);
66     }
67     
68     public byte getDataStructureType() {
69         return DATA_STRUCTURE_TYPE;
70     }
71
72     public String JavaDoc toString() {
73         return value;
74     }
75
76     /**
77      * @openwire:property version=1
78      */

79     public String JavaDoc getValue() {
80         return value;
81     }
82     public void setValue(String JavaDoc connectionId) {
83         this.value = connectionId;
84     }
85     
86     public boolean isMarshallAware() {
87         return false;
88     }
89
90     
91    
92     public int compareTo(ConnectionId o){
93         return value.compareTo(o.value);
94     }
95 }
96
Popular Tags