| Package | Description | 
|---|---|
| com.tailf.maapi | 
 MAAPI is an API which provides full access to the systems internal
 transaction engine. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
MaapiCursor | 
Maapi.newCursor(int tid,
         ConfPath path)
 Creates a cursor for a list specified by  
path | 
MaapiCursor | 
Maapi.newCursor(int tid,
         String fmt,
         Object... arguments)
 Creates a cursor for a list specified by  
fmt. | 
MaapiCursor | 
Maapi.newCursorWithFilter(int tid,
                   String filter,
                   ConfPath path)
 Creates a cursor for a list specified by  
path with an XPath
 filter specified by filter. | 
MaapiCursor | 
Maapi.newCursorWithFilter(int tid,
                   String filter,
                   String fmt,
                   Object... arguments)
 Creates a cursor for a list specified by  
fmt with an XPath
 filter specified by filter. | 
| 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...). | 
List<ConfObject[]> | 
Maapi.getObjects(MaapiCursor c,
          int numOfObjects,
          int numOfInstances)
Get several list instances with one request. 
 |