Package org.snmp4j.agent.mo.jmx.util

Examples of org.snmp4j.agent.mo.jmx.util.JMXArrayIndexKey


  public JMXSimpleArrayIndexSupport() {
  }

  public Object getRowIdentifier(Object nativeRowId, int nativeIndex) {
    return new JMXArrayIndexKey(nativeIndex);
  }
View Full Code Here


    return null;
  }

  public Object mapToRowIdentifier(OID rowIndex) {
    if (rowIndex == null) {
      return new JMXArrayIndexKey(0);
    }
    return new JMXArrayIndexKey(rowIndex.get(0));
  }
View Full Code Here

TOP

Related Classes of org.snmp4j.agent.mo.jmx.util.JMXArrayIndexKey

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.