01: /*_############################################################################
02: _##
03: _## SNMP4J-AgentJMX - MBeanAttributeListMOTableInfo.java
04: _##
05: _## Copyright (C) 2006-2007 Frank Fock (SNMP4J.org)
06: _##
07: _## This program is free software; you can redistribute it and/or modify
08: _## it under the terms of the GNU General Public License version 2 as
09: _## 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 javax.management.ObjectName;
26:
27: /**
28: * The <code>MBeanAttributeListMOTableInfo</code> provides a mapping between
29: * a multi valued MBean attribute an a single column SNMP table.
30: *
31: * @author Frank Fock
32: * @version 1.0
33: */
34: public class MBeanAttributeListMOTableInfo extends
35: MBeanAttributeMOTableInfo {
36:
37: /**
38: * Creates a single column SNMP table to multi valued MBean attribute mapping.
39: * @param name
40: * the name of the MBean.
41: * @param listProvider
42: * the key provider that provides the keys and values for the SNMP table.
43: */
44: public MBeanAttributeListMOTableInfo(ObjectName name,
45: MBeanAttributeKeyProvider listProvider) {
46: super (name, listProvider, null, null,
47: new JMXSimpleArrayIndexSupport());
48: }
49:
50: }
|