The Connector object is obtains either by loading a Connector explicitly
(system.loadConnector)
or by retrieving the AssemblyLine
Connector object in an AssemblyLine. When writing scripts in an
assemblyline, go through the AssemblyLine Connector object that will give you
access to more methods.
getParam ( param )
|
Returns the configuration value for the parameter param
|
setParam ( param, value )
|
Sets the configuration value for the parameter param to value.
|
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 entries were found a null value is
returned.
|