Package nz.co.abrahams.asithappens.snmputil

Examples of nz.co.abrahams.asithappens.snmputil.SNMPAccess


     * Creates a read-only interface to the SNMP access class.
     *
     * @return read-only SNMP interface
     */
    public SNMPAccess createSNMPReadInterface() throws UnknownHostException, SNMPException {
        return new SNMPAccess(getResolvedAddress(), communityRead);
    }
View Full Code Here


     * Creates a read-write interface to the SNMP access class.
     *
     * @return read-write SNMP interface
     */
    public SNMPAccess createSNMPWriteInterface() throws UnknownHostException, SNMPException {
        return new SNMPAccess(getResolvedAddress(), communityWrite);
    }
View Full Code Here

TOP

Related Classes of nz.co.abrahams.asithappens.snmputil.SNMPAccess

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.