Modifier and Type | Method and Description |
---|---|
void |
Registration.register(java.lang.String accountId,
java.lang.String projectId,
java.lang.String authKey,
RegistrationListener registrationListener)
Executes a call to register the device to the server.
|
Modifier and Type | Method and Description |
---|---|
void |
Retriever.retrieveLicense(java.lang.String accountId,
java.lang.String projectId,
java.lang.String authKey,
java.lang.String appId,
LicenseRetrieverListener licenseRetrieverListener)
Retrieves the license from the server.
|
void |
Retriever.retrieveSettings(java.lang.String accountId,
java.lang.String projectId,
java.lang.String authKey,
java.lang.String appId,
SettingsRetrieverListener settingsRetrieverListener,
Module module)
Retrieves the settings from the server.
|
Modifier and Type | Method and Description |
---|---|
boolean |
LocalClassifier.classifyBuffer(byte[] buffer,
java.lang.String fileName)
Executes a buffer classification.
|
boolean |
LocalClassifier.classifyFile(java.io.File file)
Executes a file classification.
|
void |
MultithreadedClassifier.classifyFile(java.io.File file,
int priority)
Executes a file classification.
|
boolean |
LocalClassifier.classifyString(java.lang.String string)
Executes a string classification.
|
void |
MultithreadedClassifier.classifyString(java.lang.String string,
int priority)
Executes a string classification.
|
void |
MultithreadedClassifier.loadSettings(java.io.File settingsFile)
Loads the settings from a file.
|
void |
LocalClassifier.loadSettings(java.io.File settingsFile)
Loads the settings from a file.
|
void |
MultithreadedClassifier.loadSettings(java.lang.String settings)
Loads the settings from a string.
|
void |
LocalClassifier.loadSettings(java.lang.String settings)
Loads the settings from a string.
|
Modifier and Type | Method and Description |
---|---|
void |
LocalClassifierBase.loadLicense(java.io.File licenseFile)
Loads the license from a file.
|
void |
LocalClassifierBase.loadLicense(java.lang.String license)
Loads the license from a string.
|
Modifier and Type | Method and Description |
---|---|
void |
MultithreadedScanner.loadSettings(java.io.File settingsFile)
Loads the settings from a file.
|
void |
LocalScanner.loadSettings(java.io.File settingsFile)
Loads the settings from a file.
|
void |
MultithreadedScanner.loadSettings(java.lang.String settings)
Loads the settings from a string.
|
void |
LocalScanner.loadSettings(java.lang.String settings)
Loads the settings from a string.
|
java.util.List<Threat> |
LocalScanner.scanBuffer(byte[] buffer,
boolean stopAtFirstThreat,
java.lang.String fileName)
Executes a buffer scan.
|
void |
LocalScanner.scanBuffer(byte[] buffer,
ThreatHandler threatHandler,
java.lang.String fileName)
Executes a buffer scan with a custom
ThreatHandler . |
void |
MultithreadedScanner.scanBuffer(byte[] buffer,
ThreatHandler threatHandler,
java.lang.String fileName,
int priority)
Executes a buffer scan with a custom
ThreatHandler . |
java.util.List<Threat> |
LocalScanner.scanFile(java.io.File file,
boolean stopAtFirstThreat)
Executes a file scan.
|
void |
MultithreadedScanner.scanFile(java.io.File file,
boolean stopAtFirstThreat,
int priority)
Executes a file scan.
|
void |
LocalScanner.scanFile(java.io.File file,
ThreatHandler threatHandler)
Executes a file scan with a custom
ThreatHandler . |
void |
MultithreadedScanner.scanFile(java.io.File file,
ThreatHandler threatHandler,
int priority)
Executes a file scan with a custom
ThreatHandler . |
void |
CloudScanner.scanFiles(java.util.List<java.io.File> files,
boolean verbose,
boolean masked)
Executes a cloud scan of multiple files.
|
void |
CloudScanner.scanFiles(java.util.List<java.io.File> files,
boolean stopAtFirst,
boolean verbose,
boolean masked)
Executes a cloud scan of multiple files.
|
void |
CloudScanner.scanFiles(java.util.List<java.io.File> files,
int stopAt,
boolean verbose,
boolean masked)
Executes a cloud scan of multiple files.
|
java.util.List<Threat> |
LocalScanner.scanString(java.lang.String string,
boolean stopAtFirstThreat)
Executes a string scan.
|
void |
MultithreadedScanner.scanString(java.lang.String string,
boolean stopAtFirstThreat,
int priority)
Executes a string scan.
|
void |
LocalScanner.scanString(java.lang.String string,
ThreatHandler threatHandler)
Executes a string scan with a custom
ThreatHandler . |
void |
MultithreadedScanner.scanString(java.lang.String string,
ThreatHandler threatHandler,
int priority)
Executes a string scan with a custom
ThreatHandler . |
void |
CloudScanner.scanStrings(java.util.List<java.lang.String> strings,
boolean verbose,
boolean masked)
Executes a cloud scan of multiple strings.
|
void |
CloudScanner.scanStrings(java.util.List<java.lang.String> strings,
boolean stopAtFirst,
boolean verbose,
boolean masked)
Executes a cloud scan of multiple strings.
|
void |
CloudScanner.scanStrings(java.util.List<java.lang.String> strings,
int stopAt,
boolean verbose,
boolean masked)
Executes a cloud scan of multiple strings.
|
Modifier and Type | Method and Description |
---|---|
void |
LocalScannerBase.loadLicense(java.io.File licenseFile)
Loads the license from a file.
|
void |
LocalScannerBase.loadLicense(java.lang.String license)
Loads the license from a string.
|