KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > snmp4j > agent > io > Context


1 /*_############################################################################
2   _##
3   _## SNMP4J-Agent - Context.java
4   _##
5   _## Copyright (C) 2005-2007 Frank Fock (SNMP4J.org)
6   _##
7   _## Licensed under the Apache License, Version 2.0 (the "License");
8   _## you may not use this file except in compliance with the License.
9   _## You may obtain a copy of the License at
10   _##
11   _## http://www.apache.org/licenses/LICENSE-2.0
12   _##
13   _## Unless required by applicable law or agreed to in writing, software
14   _## distributed under the License is distributed on an "AS IS" BASIS,
15   _## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   _## See the License for the specific language governing permissions and
17   _## limitations under the License.
18   _##
19   _##########################################################################*/

20
21
22 package org.snmp4j.agent.io;
23
24 import java.io.*;
25 import org.snmp4j.smi.OctetString;
26
27 public class Context implements Serializable {
28
29   static final long serialVersionUID = -6616464416265180630L;
30
31   private OctetString context;
32
33   public Context(OctetString context) {
34     this.context = context;
35   }
36
37   public OctetString getContext() {
38     return context;
39   }
40
41   public boolean equals(Object JavaDoc obj) {
42     if (obj instanceof Context) {
43       return context.equals(((Context)obj).context);
44     }
45     return false;
46   }
47
48   public int hashCode() {
49     return context.hashCode();
50   }
51
52 }
53
Popular Tags