0N/A/*
2362N/A * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/Apackage sun.management.snmp.jvminstr;
0N/A
0N/A// java imports
0N/A//
0N/Aimport java.io.Serializable;
0N/A
0N/A// jmx imports
0N/A//
0N/Aimport javax.management.MBeanServer;
0N/Aimport com.sun.jmx.snmp.SnmpCounter;
0N/Aimport com.sun.jmx.snmp.SnmpCounter64;
0N/Aimport com.sun.jmx.snmp.SnmpGauge;
0N/Aimport com.sun.jmx.snmp.SnmpInt;
0N/Aimport com.sun.jmx.snmp.SnmpUnsignedInt;
0N/Aimport com.sun.jmx.snmp.SnmpIpAddress;
0N/Aimport com.sun.jmx.snmp.SnmpTimeticks;
0N/Aimport com.sun.jmx.snmp.SnmpOpaque;
0N/Aimport com.sun.jmx.snmp.SnmpString;
0N/Aimport com.sun.jmx.snmp.SnmpStringFixed;
0N/Aimport com.sun.jmx.snmp.SnmpOid;
0N/Aimport com.sun.jmx.snmp.SnmpNull;
0N/Aimport com.sun.jmx.snmp.SnmpValue;
0N/Aimport com.sun.jmx.snmp.SnmpVarBind;
0N/Aimport com.sun.jmx.snmp.SnmpStatusException;
0N/A
0N/A// jdmk imports
0N/A//
0N/Aimport com.sun.jmx.snmp.agent.SnmpMib;
0N/Aimport com.sun.jmx.snmp.agent.SnmpMibGroup;
0N/Aimport com.sun.jmx.snmp.agent.SnmpStandardObjectServer;
0N/Aimport com.sun.jmx.snmp.agent.SnmpStandardMetaServer;
0N/Aimport com.sun.jmx.snmp.agent.SnmpMibSubRequest;
0N/Aimport com.sun.jmx.snmp.agent.SnmpMibTable;
0N/Aimport com.sun.jmx.snmp.EnumRowStatus;
0N/A
0N/Aimport sun.management.snmp.jvmmib.JvmThreadingMeta;
0N/Aimport sun.management.snmp.jvmmib.JvmThreadInstanceTableMeta;
0N/A
0N/A/**
0N/A * The class is used for representing SNMP metadata for the "JvmThreading"
0N/A * group.
0N/A */
0N/Apublic class JvmThreadingMetaImpl extends JvmThreadingMeta {
0N/A
0N/A /**
0N/A * Constructor for the metadata associated to "JvmThreading".
0N/A */
0N/A public JvmThreadingMetaImpl(SnmpMib myMib,
0N/A SnmpStandardObjectServer objserv) {
0N/A super(myMib, objserv);
0N/A }
0N/A
0N/A /**
0N/A * Factory method for "JvmThreadInstanceTable" table metadata class.
0N/A *
0N/A * You can redefine this method if you need to replace the default
0N/A * generated metadata class with your own customized class.
0N/A *
0N/A * @param tableName Name of the table object ("JvmThreadInstanceTable")
0N/A * @param groupName Name of the group to which this table belong
0N/A * ("JvmThreading")
0N/A * @param mib The SnmpMib object in which this table is registered
0N/A * @param server MBeanServer for this table entries (may be null)
0N/A *
0N/A * @return An instance of the metadata class generated for the
0N/A * "JvmThreadInstanceTable" table (JvmThreadInstanceTableMeta)
0N/A *
0N/A **/
0N/A protected JvmThreadInstanceTableMeta
0N/A createJvmThreadInstanceTableMetaNode(String tableName,
0N/A String groupName,
0N/A SnmpMib mib,
0N/A MBeanServer server) {
0N/A return new JvmThreadInstanceTableMetaImpl(mib, objectserver);
0N/A }
0N/A}