SnmpOidRecordpublic class SnmpOidRecord extends Object Represents an entry of an {@link com.sun.jmx.snmp.SnmpOidTable SnmpOidTable}. It contains the name of the MIB variable,
the corresponding OID and its type.
The type is represented using one of the following:
- "C" for
Counter32
- "C64" for
Counter64
- "EN" for
Table Entry
- "G" for
Gauge32
- "I" for
Integer32
- "ID" for
OBJECT-IDENTITY
- "IP" for
IpAddress
- "NT" for
NOTIFICATION-TYPE
- "NU" for
Null
- "O" for
Opaque
- "OI" for
Object Identifier
- "S" for
String
- "T" for
TimeTicks
- "TA" for
Table
- "U" for
Unsigned32
This API is a Sun Microsystems internal API and is subject
to change without notice. |
Fields Summary |
---|
private String | nameThe MIB variable name. | private String | oidThe MIB variable OID. | private String | typeThe MIB variable type. |
Constructors Summary |
---|
public SnmpOidRecord(String name, String oid, String type)Creates an SnmpOidRecord with the specified MIB variable
name, OID and type.
this.name = name;
this.oid = oid;
this.type = type;
|
Methods Summary |
---|
public java.lang.String | getName()Gets the logical name of the MIB variable.
return name;
| public java.lang.String | getOid()Gets the OID of the MIB variable.
return oid;
| public java.lang.String | getType()Gets the type of the MIB variable.
return type;
|
|