Package | Description |
---|---|
com.tailf.conf |
Data types and utilities for communication with the server.
|
com.tailf.dp |
Data provider API package, for implementation of callbacks for validations, actions, transformation etc.
|
com.tailf.dp.annotations |
Annotations and proxy helper classes for callbacks.
|
com.tailf.maapi |
MAAPI is an API which provides full access to the systems internal
transaction engine.
|
com.tailf.navu |
NAVU (Navigation Utilities) is an API which provides increased
accessibility to the ConfD/NCS populated data model tree:
NAVU-Tree.
|
com.tailf.ncs.snmp.snmp4j |
NCS snmp4j support package
|
Modifier and Type | Class and Description |
---|---|
class |
ConfXKey |
Modifier and Type | Method and Description |
---|---|
ConfKey |
DpDataCallback.getIteratorKey(DpTrans trans,
ConfObject[] kp,
Object obj)
The following callback is used with the iterators above.
|
Modifier and Type | Method and Description |
---|---|
Object |
DpDataFindNextIterator.findNext(DpTrans trans,
ConfObject[] kp,
ConfFindNextType type,
ConfKey key)
This method is called by Dp when a FIND_NEXT or a FIND_NEXT_OBJECT call
is issued.
|
DpDataFindNextIterator |
DpDataCallback.iterator(DpTrans trans,
ConfObject[] kp,
ConfFindNextType type,
ConfKey key)
This iterator method is a specialization of
DpDataCallback.iterator(DpTrans, ConfObject[])
in that it returns an extended iterator i.e. |
DpDataFindNextIterator |
DpDataCallback.iterator(DpTrans trans,
ConfObject[] kp,
ConfFindNextType type,
ConfKey key,
DpListFilter filter)
Variant of the DpDataFindNextIterator-returning iterator above that may
receive a DpListFilter instance which can be used to filter the list.
|
int |
DpDataCallback.moveAfter(DpTrans trans,
ConfObject[] kp,
ConfKey prevkey)
This callback only needs to be implemented if we provide configuration
data that has YANG lists with a ordered-by user statement.
|
Modifier and Type | Method and Description |
---|---|
ConfKey |
DataCallbackProxy.getIteratorKey(DpTrans trans,
ConfObject[] kp,
Object obj) |
Modifier and Type | Method and Description |
---|---|
DpDataFindNextIterator |
DataCallbackProxy.iterator(DpTrans trans,
ConfObject[] kp,
ConfFindNextType type,
ConfKey key) |
DpDataFindNextIterator |
DataCallbackProxy.iterator(DpTrans trans,
ConfObject[] kp,
ConfFindNextType type,
ConfKey key,
DpListFilter filter) |
int |
DataCallbackProxy.moveAfter(DpTrans trans,
ConfObject[] kp,
ConfKey prevkey) |
Modifier and Type | Method and Description |
---|---|
ConfKey |
Maapi.findNext(MaapiCursor c,
ConfFindNextType type,
ConfKey key)
The findNext method makes it possible to jump forward to an element
in the model at a position defined by the MaapiCursor
After the findNext call the same MaapiCursor can be used in subsequent
getNext calls.
|
ConfKey |
Maapi.getNext(MaapiCursor c)
Iterates and gets the keys for the next element pinpointed by the
MaapiCursor initially retrieved by
Maapi.newCursor(int, String, Object...) . |
Modifier and Type | Method and Description |
---|---|
ConfKey |
Maapi.findNext(MaapiCursor c,
ConfFindNextType type,
ConfKey key)
The findNext method makes it possible to jump forward to an element
in the model at a position defined by the MaapiCursor
After the findNext call the same MaapiCursor can be used in subsequent
getNext calls.
|
void |
Maapi.move(int tid,
ConfKey tokey,
String fmt,
Object... arguments)
This function moves an existing object.
|
void |
Maapi.moveOrdered(int tid,
MoveWhereFlag where,
ConfKey tokey,
String fmt,
Object... arguments)
For a list with the YANG ordered-by user statement, this function can be
used to change the order of entries, by moving one entry to a new
position.
|
Modifier and Type | Method and Description |
---|---|
ConfKey |
NavuChange.getKey() |
ConfKey |
NavuContainer.getKey()
If this container is a list instance this method
can be used to get the list entry key.
|
ConfKey |
NavuListEntry.getKey()
Return the associate key that this NavuList
is mapped to.
|
ConfKey |
NavuLeaf.toKey()
Convert the leaf value to a ConfKey.
|
Modifier and Type | Method and Description |
---|---|
Set<Map.Entry<ConfKey,NavuListEntry>> |
NavuList.entrySet()
Returns a set of entries with element key and element.
|
Map<ConfKey,NavuChange> |
NavuContainer.findChanges(Integer[] criteria)
Deprecated.
|
Map<ConfKey,NavuChange> |
NavuContainer.findChanges(NavuContext delContext,
Integer[] criteria)
Analyzes what changes has been done within this
transaction.
|
Iterable<ConfKey> |
NavuCursor.getKeys()
Returns an iterable item
|
Set<ConfKey> |
NavuList.keySet()
Returns a Set containing all of the keys for this list.
|
Modifier and Type | Method and Description |
---|---|
boolean |
NavuList.containsNode(ConfKey key)
Returns true if and only if this
NavuList
contains a NavuListEntry where
NavuListEntry.getKey() equals the specified
key. |
NavuContainer |
NavuList.create(ConfKey key)
Create and return a new list element in this
NavuList . |
void |
NavuList.delete(ConfKey key)
Deletes an element from the list.
|
NavuListEntry |
NavuList.elem(ConfKey key)
Returns a list element according to the given key.
|
NavuContainer |
NavuList.insert(ConfKey key,
boolean createBackpointer)
Inserts an element into a list using Maapi.insert().
|
static NoSuchNavuNodeException |
NoSuchNavuNodeException.mk(NavuList navuList,
ConfKey key) |
void |
NavuList.move(ConfKey key,
NavuList.WhereTo whereTo,
ConfKey to)
Move a list element to a new position in the list.
|
NavuContainer |
NavuList.safeCreate(ConfKey key)
Variant of
NavuList.create(ConfKey) that succeeds even if the
key already exists. |
void |
PreparedXMLStatement.setConfKey(int index,
ConfKey key)
Deprecated.
|
NavuContainer |
NavuList.sharedCreate(ConfKey key)
Variant of
NavuList.create(ConfKey) that succeeds even if the
key already exists, and also maintains a reference counter
on the object. |
Modifier and Type | Method and Description |
---|---|
HashMap<InetAddress,ConfKey> |
NotificationReceiver.getKnownIPAddresses()
Returns the set of snmp peer ip addresses
for registered managed devices.
|
Constructor and Description |
---|
FilterKnownIPAddresses(Map<InetAddress,ConfKey> knownIPAddresses)
Filter constructor
|