Package org.snmp4j.util

Examples of org.snmp4j.util.TableUtils$DenseTableRequest


      final VariableBinding... bindings) {

    checkNoNulls(address, rowStatusColumnOid, rowIndex, bindings);

    final Target target = this.createTarget(address);
    final TableUtils tableUtils = new TableUtils(this.snmp, new DefaultPDUFactory());
    return tableUtils.createRow(target, rowStatusColumnOid, rowIndex, bindings);
  }
View Full Code Here


  public ResponseEvent destroyRowSync(final A address, final OID rowStatusColumnOid, final OID rowIndex) {

    checkNoNulls(address, rowStatusColumnOid, rowIndex);

    final Target target = this.createTarget(address);
    final TableUtils tableUtils = new TableUtils(this.snmp, new DefaultPDUFactory());
    return tableUtils.destroyRow(target, rowStatusColumnOid, rowIndex);
  }
View Full Code Here

      final OID lowerBoundIndex, final OID upperBoundIndex, final OID... columnOids) {

    checkNoNulls(address, listener, handle, lowerBoundIndex, upperBoundIndex, columnOids);

    final Target target = this.createTarget(address);
    final TableUtils tableUtils = new TableUtils(this.snmp, new DefaultPDUFactory());
    tableUtils.getDenseTable(target, columnOids, listener, handle, lowerBoundIndex, upperBoundIndex);
  }
View Full Code Here

      final OID lowerBoundIndex, final OID upperBoundIndex, final OID... columnOids) {

    checkNoNulls(address, listener, handle, lowerBoundIndex, upperBoundIndex, columnOids);

    final Target target = this.createTarget(address);
    final TableUtils tableUtils = new TableUtils(this.snmp, new DefaultPDUFactory());
    tableUtils.getTable(target, columnOids, listener, handle, lowerBoundIndex, upperBoundIndex);
  }
View Full Code Here

      final OID... columnOids) {

    checkNoNulls(address, lowerBoundIndex, upperBoundIndex, columnOids);

    final Target target = this.createTarget(address);
    final TableUtils tableUtils = new TableUtils(this.snmp, new DefaultPDUFactory());
    return tableUtils.getTable(target, columnOids, lowerBoundIndex, upperBoundIndex);
  }
View Full Code Here

TOP

Related Classes of org.snmp4j.util.TableUtils$DenseTableRequest

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.