Package org.snmp4j.agent.mo.snmp

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


                               Variable defaultValue, boolean mutableInService) {
    return new DateAndTime(columnID, access, defaultValue, mutableInService);
  }

  public MOScalar createScalar(OID oid, MOAccess access, Variable value) {
    return new DateAndTimeScalar(oid, access, (OctetString)
                                 ((value == null) ? createInitialValue()
                                  : value));

  }
View Full Code Here

TOP

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

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.