public interface ScannerMonitor
| Modifier and Type | Method and Description |
|---|---|
void |
contributionErrors(java.lang.String description)
Called when errors are encountered processing contributions
|
void |
deploymentErrors(java.lang.String description)
Called when errors are encountered during deployments
|
void |
error(java.lang.Throwable e)
Called when a general error is encountered processing a contribution
|
void |
ignored(java.lang.String name)
Called when a file type is not recognized and ignored.
|
void |
processed(java.lang.String name)
Called when a contribution is deployed.
|
void |
removalError(java.lang.String filename,
java.lang.Throwable e)
Called when an error is encountered removing a contribution
|
void |
removed(java.lang.String name)
Called when a contribution is removed
|
void processed(java.lang.String name)
name - the name of the contributionvoid removed(java.lang.String name)
name - the name of the contributionvoid ignored(java.lang.String name)
name - the file namevoid error(java.lang.Throwable e)
e - the errorvoid removalError(java.lang.String filename,
java.lang.Throwable e)
filename - the file being removede - the errorvoid contributionErrors(java.lang.String description)
description - a description of the errorsvoid deploymentErrors(java.lang.String description)
description - a description of the errors