KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*_############################################################################
2   _##
3   _## SNMP4J-AgentX - AgentXMasterSession.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 org.snmp4j.agent.agentx.AgentXProtocol;
26 import org.snmp4j.agent.agentx.AgentXSession;
27 import org.snmp4j.smi.OID;
28 import org.snmp4j.smi.OctetString;
29 import java.util.Map JavaDoc;
30 import java.util.HashMap JavaDoc;
31
32 /**
33  *
34  * @author Frank Fock
35  * @version 1.0
36  */

37 public class AgentXMasterSession extends AgentXSession {
38
39   private int agentXVersion = AgentXProtocol.VERSION_1_0 & 0xFF;
40   private AgentXQueue queue;
41   private OID oid;
42   private OctetString descr;
43   private Map JavaDoc agentCaps;
44
45   public AgentXMasterSession(int sessionID, AgentXQueue queue,
46                              OID oid, OctetString descr) {
47     super(sessionID);
48     this.queue = queue;
49     this.oid = oid;
50     this.descr = descr;
51   }
52
53   public AgentXQueue getQueue() {
54     return queue;
55   }
56
57   public OID getOid() {
58     return oid;
59   }
60
61   public OctetString getDescr() {
62     return descr;
63   }
64
65   public int getAgentXVersion() {
66     return agentXVersion;
67   }
68
69   public void setAgentXVersion(int agentXVersion) {
70     this.agentXVersion = agentXVersion;
71   }
72
73   public synchronized void addAgentCaps(OID sysORID, OID agentCapsIndex) {
74     if (agentCaps == null) {
75       agentCaps = new HashMap JavaDoc(10);
76     }
77     agentCaps.put(sysORID, agentCapsIndex);
78   }
79
80   public synchronized OID removeAgentCaps(OID sysORID) {
81     if (agentCaps != null) {
82       return (OID) agentCaps.remove(sysORID);
83     }
84     return null;
85   }
86
87 }
88
Popular Tags