public interface SnmpOperations
Modifier and Type | Method and Description |
---|---|
SnmpResponse<VarbindCollection> |
get(List<String> oids)
Performs an SNMP GET operation.
|
SnmpResponse<VarbindCollection> |
get(String... oids)
Performs an SNMP GET operation.
|
SnmpResponse<VarbindCollection> |
get(VarbindCollection varbinds)
Performs an SNMP GET operation.
|
SnmpResponse<List<VarbindCollection>> |
getBulk(int nonRepeaters,
int maxRepetitions,
List<String> oids)
Performs an SNMP GETBULK operation.
|
SnmpResponse<List<VarbindCollection>> |
getBulk(int nonRepeaters,
int maxRepetitions,
String... oids)
Performs an SNMP GETBULK operation.
|
SnmpResponse<List<VarbindCollection>> |
getBulk(int nonRepeaters,
int maxRepetitions,
VarbindCollection varbinds)
Performs an SNMP GETBULK operation.
|
SnmpResponse<VarbindCollection> |
getNext(List<String> oids)
Performs an SNMP GETNEXT operation.
|
SnmpResponse<VarbindCollection> |
getNext(String... oids)
Performs an SNMP GETNEXT operation.
|
SnmpResponse<VarbindCollection> |
getNext(VarbindCollection varbinds)
Performs an SNMP GETNEXT operation.
|
SnmpResponse<VarbindCollection> |
set(List<Varbind> varbinds)
Performs an SNMP SET operation.
|
SnmpResponse<VarbindCollection> |
set(Varbind... varbinds)
Performs an SNMP SET operation.
|
SnmpResponse<VarbindCollection> |
set(VarbindCollection varbinds)
Performs an SNMP GET operation.
|
SnmpWalker<VarbindCollection> |
walk(int nonRepeaters,
List<String> oids)
Performs a walk of a MIB conceptual table.
|
SnmpWalker<VarbindCollection> |
walk(int nonRepeaters,
String... oids)
Performs a walk of a MIB conceptual table.
|
SnmpWalker<VarbindCollection> |
walk(List<String> repeaters)
Performs a walk of a MIB conceptual table.
|
SnmpWalker<VarbindCollection> |
walk(List<String> nonRepeaters,
List<String> repeaters)
Performs a walk of a MIB conceptual table.
|
SnmpWalker<VarbindCollection> |
walk(String... repeaters)
Performs a walk of a MIB conceptual table.
|
SnmpResponse<VarbindCollection> get(List<String> oids)
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetchSnmpResponse<VarbindCollection> get(VarbindCollection varbinds)
varbinds
- a collection identifying the objects to fetchSnmpResponse<VarbindCollection> set(Varbind... varbinds)
varbinds
- variable bindings to setSnmpResponse<VarbindCollection> set(List<Varbind> varbinds)
varbinds
- variable bindings to setSnmpResponse<VarbindCollection> set(VarbindCollection varbinds)
varbinds
- a collection identifying the objects to setSnmpResponse<VarbindCollection> get(String... oids)
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetchSnmpResponse<VarbindCollection> getNext(List<String> oids)
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetchSnmpResponse<VarbindCollection> getNext(VarbindCollection varbinds)
varbinds
- a collection identifying the objects to fetchSnmpResponse<VarbindCollection> getNext(String... oids)
oids
- MIB names or dotted-decimal object identifiers for the
objects to fetchSnmpResponse<List<VarbindCollection>> getBulk(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 objectsmaxRepetitions
.SnmpResponse<List<VarbindCollection>> getBulk(int nonRepeaters, int maxRepetitions, VarbindCollection varbinds)
nonRepeaters
- number of non-repeating objects at the beginning of
varbinds
.maxRepetitions
- maximum number of repetitions to retrieve for the
repeating objects in varbinds
varbinds
- a collection identifying the objects to fetchmaxRepetitions
.SnmpResponse<List<VarbindCollection>> getBulk(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 objectsmaxRepetitions
.SnmpWalker<VarbindCollection> walk(int nonRepeaters, List<String> oids)
This is a high level operation that can be used to retrieve all rows of a conceptual table.
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 objectsSnmpWalker<VarbindCollection> walk(int nonRepeaters, String... oids)
This is a high level operation that can be used to retrieve all rows of a conceptual table.
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 objectsSnmpWalker<VarbindCollection> walk(List<String> nonRepeaters, List<String> repeaters)
This is a high level operation that can be used to retrieve all rows of a conceptual table.
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 retrieveSnmpWalker<VarbindCollection> walk(List<String> repeaters)
This is a high level operation that can be used to retrieve all rows of a conceptual table.
repeaters
- MIB names or dotted-decimal object identifiers
for the table column elements to retrieveSnmpWalker<VarbindCollection> walk(String... repeaters)
This is a high level operation that can be used to retrieve all rows of a conceptual table.
repeaters
- MIB names or dotted-decimal object identifiers
for the table column elements to retrieveCopyright © 2012–2015. All rights reserved.