public interface SnmpOperationFactory
Modifier and Type | Method and Description |
---|---|
SnmpOperation<VarbindCollection> |
newGet(List<String> oids)
Creates an SNMP GET operation.
|
SnmpOperation<VarbindCollection> |
newGet(String... oids)
Creates an SNMP GET operation.
|
SnmpOperation<VarbindCollection> |
newGet(VarbindCollection varbinds)
Creates an SNMP GET operation.
|
SnmpOperation<List<VarbindCollection>> |
newGetBulk(int nonRepeaters,
int maxRepetitions,
List<String> oids)
Creates an SNMP GETBULK operation.
|
SnmpOperation<List<VarbindCollection>> |
newGetBulk(int nonRepeaters,
int maxRepetitions,
String... oids)
Create an SNMP GETBULK operation.
|
SnmpOperation<List<VarbindCollection>> |
newGetBulk(int nonRepeaters,
int maxRepetitions,
VarbindCollection varbinds)
Creates an SNMP GETBULK operation.
|
SnmpOperation<VarbindCollection> |
newGetNext(List<String> oids)
Creates an SNMP GETNEXT operation.
|
SnmpOperation<VarbindCollection> |
newGetNext(String... oids)
Creates an SNMP GETNEXT operation.
|
SnmpOperation<VarbindCollection> |
newGetNext(VarbindCollection varbinds)
Creates an SNMP GETNEXT operation.
|
SnmpOperation<VarbindCollection> |
newSet(List<Varbind> varbinds)
Creates an SNMP SET operation.
|
SnmpOperation<VarbindCollection> |
newSet(Varbind... varbinds)
Creates an SNMP SET operation.
|
SnmpOperation<VarbindCollection> |
newSet(VarbindCollection varbinds)
Creates an SNMP SET operation.
|
SnmpAsyncWalker<VarbindCollection> |
newWalk(int nonRepeaters,
List<String> oids)
Creates a walk operation.
|
SnmpAsyncWalker<VarbindCollection> |
newWalk(int nonRepeaters,
String... oids)
Creates a walk operation.
|
SnmpAsyncWalker<VarbindCollection> |
newWalk(List<String> repeaters)
Creates a walk operation.
|
SnmpAsyncWalker<VarbindCollection> |
newWalk(List<String> nonRepeaters,
List<String> repeaters)
Creates a walk operation.
|
SnmpAsyncWalker<VarbindCollection> |
newWalk(String... repeaters)
Creates a walk operation.
|
SnmpOperation<VarbindCollection> newGet(List<String> oids)
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetchSnmpOperation<VarbindCollection> newGet(VarbindCollection varbinds)
varbinds
- a collection identifying the objects to fetchSnmpOperation<VarbindCollection> newGet(String... oids)
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetchSnmpOperation<VarbindCollection> newSet(List<Varbind> varbinds)
varbinds
- variable bindings to setSnmpOperation<VarbindCollection> newSet(VarbindCollection varbinds)
varbinds
- a collection identifying the objects to fetchSnmpOperation<VarbindCollection> newSet(Varbind... varbinds)
varbinds
- variable bindings to setSnmpOperation<VarbindCollection> newGetNext(List<String> oids)
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetchSnmpOperation<VarbindCollection> newGetNext(VarbindCollection varbinds)
varbinds
- a collection identifying the objects to fetchSnmpOperation<VarbindCollection> newGetNext(String... oids)
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetchSnmpOperation<List<VarbindCollection>> newGetBulk(int nonRepeaters, int maxRepetitions, List<String> oids)
nonRepeaters
- number of non-repeating objects at the beginning of
oids
.maxRepetitions
- maximum number of repetitions to retrieve for the
repeating objects in oids
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetch; the first nonRepeaters
identifiers in the list
are assumed to be non-repeating objectsSnmpOperation<List<VarbindCollection>> newGetBulk(int nonRepeaters, int maxRepetitions, VarbindCollection varbinds)
nonRepeaters
- number of non-repeating objects at the beginning of
oids
.maxRepetitions
- maximum number of repetitions to retrieve for the
repeating objects in oids
varbinds
- a collection identifying the objects to fetchSnmpOperation<List<VarbindCollection>> newGetBulk(int nonRepeaters, int maxRepetitions, String... oids)
nonRepeaters
- number of non-repeating objects at the beginning of
oids
.maxRepetitions
- maximum number of repetitions to retrieve for the
repeating objects in oids
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetch; the first nonRepeaters
identifiers in the
list are assumed to be for non-repeating objectsSnmpAsyncWalker<VarbindCollection> newWalk(int nonRepeaters, List<String> oids)
oids
- MIB names or dotted-decimal object identifiers; the first
nonRepeaters
identifiers in the list are assumed to be for
non-repeating objectsSnmpAsyncWalker<VarbindCollection> newWalk(int nonRepeaters, String... oids)
nonRepeaters
- number of non-repeating objects at the beginning
of oids
oids
- MIB names or dotted-decimal object identifiers; the first
nonRepeaters
identifiers in the list are assumed to be for
non-repeating objectsSnmpAsyncWalker<VarbindCollection> newWalk(List<String> nonRepeaters, List<String> repeaters)
nonRepeaters
- MIB names or dotted-decimal object identifiers
for the non-repeating elements to retrieverepeaters
- MIB names or dotted-decimal object identifiers
for the table column elements to retrieveSnmpAsyncWalker<VarbindCollection> newWalk(List<String> repeaters)
repeaters
- MIB names or dotted-decimal object identifiers
for the table column elements to retrieveSnmpAsyncWalker<VarbindCollection> newWalk(String... repeaters)
repeaters
- MIB names or dotted-decimal object identifiers
for the table column elements to retrieveCopyright © 2012–2015. All rights reserved.