Searched defs:SnmpEngineId (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpEngineId.java37 * This class is handling an <CODE>SnmpEngineId</CODE> data. It copes with binary as well as <CODE>String</CODE> representation of an engine Id. A string format engine is an hex string starting with 0x.
42 public class SnmpEngineId implements Serializable { class in inherits:Serializable
49 * New <CODE>SnmpEngineId</CODE> with an hex string value. Can handle engine Id format &lt;host&gt:&lt;port&gt.
52 SnmpEngineId(String hexString) { method in class:SnmpEngineId
57 * New <CODE>SnmpEngineId</CODE> with a binary value. You can use <CODE> SnmpTools </CODE> to convert from hex string to binary format.
60 SnmpEngineId(byte[] bin) { method in class:SnmpEngineId
129 public static SnmpEngineId createEngineId(byte[] arr) throws IllegalArgumentException {
132 return new SnmpEngineId(arr);
139 public static SnmpEngineId createEngineId() {
162 return new SnmpEngineId(enginei
[all...]

Completed in 36 milliseconds