| |
The Raw Connector Object
The Raw Connector object is obtained either by loading a Raw Connector explicitly
(system.loadConnector)
or by retrieving the named AssemblyLine
Connectors.connector (myConnector.connector). When writing scripts in an
AssemblyLine, you will usually use the AssemblyLine Connector object that will give you
access to another set of methods.
The Raw Connector is fully described as rscConnector
in the javadocs.
(Some) Methods
getNextEntry()
|
Returns the next input entry.
|
putEntry ( entry )
|
Add/Insert entry
|
modEntry ( entry, search )
|
Modify entry identified by search with contents of entry.
|
deleteEntry ( entry, search )
|
Deletes the entry identified by search.
|
findEntry ( search )
|
Searches for an entry identified by search. If no entries
were found a null value is returned.
|
findEntry ( attribute, value )
|
Performs a search using "attribute equals value"
and returns the entry found. If no or more than one entries were found a null value is
returned.
|
| |
|