KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > snmp4j > agent > mo > jmx > AbstractMBeanSupport


1 /*_############################################################################
2   _##
3   _## SNMP4J-AgentJMX - AbstractMBeanSupport.java
4   _##
5   _## Copyright (C) 2006-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.mo.jmx;
24
25 import java.util.Map JavaDoc;
26 import org.snmp4j.smi.OID;
27 import java.util.HashMap JavaDoc;
28 import javax.management.MBeanServerConnection JavaDoc;
29
30 public abstract class AbstractMBeanSupport {
31
32   protected Map JavaDoc<OID,MBeanMOInfo> oid2MBeanMap;
33   protected MBeanServerConnection JavaDoc server;
34
35   public AbstractMBeanSupport(MBeanServerConnection JavaDoc server) {
36     this.server = server;
37     this.oid2MBeanMap = new HashMap JavaDoc<OID,MBeanMOInfo>();
38   }
39
40   protected synchronized MBeanMOInfo getMBeanMOInfo(OID snmpOID) {
41     return oid2MBeanMap.get(snmpOID);
42   }
43
44   public void removeMBean(OID oid) {
45     oid2MBeanMap.remove(oid);
46   }
47
48 }
49
Popular Tags