Package org.snmp4j.agent.mo.snmp

Examples of org.snmp4j.agent.mo.snmp.TimeStampScalar


    return new TimeStamp(columnID, access,
                         SNMPv2MIB.getSysUpTime(defaultContext));
  }

  public MOScalar createScalar(OID oid, MOAccess access, Variable value) {
    return new TimeStampScalar(oid, access,
                               (TimeTicks)((value == null) ?
                                           createInitialValue() : value),
                               SNMPv2MIB.getSysUpTime(defaultContext));
  }
View Full Code Here

TOP

Related Classes of org.snmp4j.agent.mo.snmp.TimeStampScalar

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.