KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > snmp4j > agent > agentx > master > MasterContextInfo


1 /*_############################################################################
2   _##
3   _## SNMP4J-AgentX - MasterContextInfo.java
4   _##
5   _## Copyright (C) 2005-2007 Frank Fock (SNMP4J.org)
6   _##
7   _## This program is free software; you can redistribute it and/or modify
8   _## it under the terms of the GNU General Public License version 2 as
9   _## published by the Free Software Foundation.
10   _##
11   _## This program is distributed in the hope that it will be useful,
12   _## but WITHOUT ANY WARRANTY; without even the implied warranty of
13   _## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14   _## GNU General Public License for more details.
15   _##
16   _## You should have received a copy of the GNU General Public License
17   _## along with this program; if not, write to the Free Software
18   _## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19   _## MA 02110-1301 USA
20   _##
21   _##########################################################################*/

22
23 package org.snmp4j.agent.agentx.master;
24
25 import java.io.Serializable JavaDoc;
26
27 import org.snmp4j.agent.mo.snmp.SysUpTime;
28 import org.snmp4j.smi.OctetString;
29
30 /**
31  * An AgentX master agent needs to manage certain context related information
32  * which this class holds. The most important of this information is the
33  * context's up time (derived from the sysUpTime object of the context - if
34  * present).
35  *
36  * @author Frank Fock
37  * @version 1.0
38  */

39 public class MasterContextInfo implements Serializable JavaDoc, Comparable JavaDoc {
40
41   private OctetString context;
42   private SysUpTime upTime;
43
44   public MasterContextInfo(OctetString context, SysUpTime contextUpTime) {
45     this.context = context;
46     this.upTime = contextUpTime;
47   }
48
49   public int compareTo(Object JavaDoc o) {
50     return context.compareTo(((MasterContextInfo)o).context);
51   }
52
53   public OctetString getContext() {
54     return context;
55   }
56
57   public SysUpTime getUpTime() {
58     return upTime;
59   }
60
61 }
62
Popular Tags