public abstract class AbstractRepositoryListener extends Object implements RepositoryListener
| Modifier | Constructor and Description | 
|---|---|
| protected  | AbstractRepositoryListener()Enables subclassing. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | artifactDeployed(RepositoryEvent event)Notifies the listener of an artifact whose upload to a remote repository has been completed, either successfully
 or not. | 
| void | artifactDeploying(RepositoryEvent event)Notifies the listener of an artifact that is about to be uploaded to a remote repository. | 
| void | artifactDescriptorInvalid(RepositoryEvent event)Notifies the listener of a syntactically or semantically invalid artifact descriptor. | 
| void | artifactDescriptorMissing(RepositoryEvent event)Notifies the listener of a missing artifact descriptor. | 
| void | artifactDownloaded(RepositoryEvent event)Notifies the listener of an artifact whose download has been completed, either successfully or not. | 
| void | artifactDownloading(RepositoryEvent event)Notifies the listener of an artifact that is about to be downloaded from a remote repository. | 
| void | artifactInstalled(RepositoryEvent event)Notifies the listener of an artifact whose installation to the local repository has been completed, either
 successfully or not. | 
| void | artifactInstalling(RepositoryEvent event)Notifies the listener of an artifact that is about to be installed to the local repository. | 
| void | artifactResolved(RepositoryEvent event)Notifies the listener of an artifact whose resolution has been completed, either successfully or not. | 
| void | artifactResolving(RepositoryEvent event)Notifies the listener of an artifact that is about to be resolved. | 
| void | metadataDeployed(RepositoryEvent event)Notifies the listener of some metadata whose upload to a remote repository has been completed, either
 successfully or not. | 
| void | metadataDeploying(RepositoryEvent event)Notifies the listener of some metadata that is about to be uploaded to a remote repository. | 
| void | metadataDownloaded(RepositoryEvent event)Notifies the listener of some metadata whose download has been completed, either successfully or not. | 
| void | metadataDownloading(RepositoryEvent event)Notifies the listener of some metadata that is about to be downloaded from a remote repository. | 
| void | metadataInstalled(RepositoryEvent event)Notifies the listener of some metadata whose installation to the local repository has been completed, either
 successfully or not. | 
| void | metadataInstalling(RepositoryEvent event)Notifies the listener of some metadata that is about to be installed to the local repository. | 
| void | metadataInvalid(RepositoryEvent event)Notifies the listener of syntactically or semantically invalid metadata. | 
| void | metadataResolved(RepositoryEvent event)Notifies the listener of some metadata whose resolution has been completed, either successfully or not. | 
| void | metadataResolving(RepositoryEvent event)Notifies the listener of some metadata that is about to be resolved. | 
protected AbstractRepositoryListener()
public void artifactDeployed(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() denotes the artifact in question and
 RepositoryEvent.getExceptions() indicates whether the upload succeeded or failed.artifactDeployed in interface RepositoryListenerevent - The event details, must not be null.public void artifactDeploying(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() denotes the artifact in question and
 RepositoryEvent.getRepository() the destination repository.artifactDeploying in interface RepositoryListenerevent - The event details, must not be null.public void artifactDescriptorInvalid(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() indicates the artifact whose descriptor is invalid and
 RepositoryEvent.getExceptions() carries the encountered errors. Depending on the session's
 ArtifactDescriptorPolicy, the underlying repository operation might abort
 with an exception or ignore the invalid descriptor.artifactDescriptorInvalid in interface RepositoryListenerevent - The event details, must not be null.public void artifactDescriptorMissing(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() indicates the
 artifact whose descriptor is missing. Depending on the session's
 ArtifactDescriptorPolicy, the underlying repository operation might abort
 with an exception or ignore the missing descriptor.artifactDescriptorMissing in interface RepositoryListenerevent - The event details, must not be null.public void artifactDownloaded(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() denotes the artifact in question and
 RepositoryEvent.getExceptions() indicates whether the download succeeded or failed. Unlike the
 RepositoryListener.artifactResolved(RepositoryEvent) event, this event is only fired when the artifact does not already
 exist locally.artifactDownloaded in interface RepositoryListenerevent - The event details, must not be null.public void artifactDownloading(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() denotes the artifact in question and
 RepositoryEvent.getRepository() the source repository. Unlike the
 RepositoryListener.artifactResolving(RepositoryEvent) event, this event is only fired when the artifact does not already
 exist locally.artifactDownloading in interface RepositoryListenerevent - The event details, must not be null.public void artifactInstalled(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() denotes the artifact in question and
 RepositoryEvent.getExceptions() indicates whether the installation succeeded or failed.artifactInstalled in interface RepositoryListenerevent - The event details, must not be null.public void artifactInstalling(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() denotes the artifact in question.artifactInstalling in interface RepositoryListenerevent - The event details, must not be null.public void artifactResolved(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() denotes the artifact in question and
 RepositoryEvent.getExceptions() indicates whether the resolution succeeded or failed. Unlike the
 RepositoryListener.artifactDownloaded(RepositoryEvent) event, this event is fired regardless whether the artifact already
 exists locally or not.artifactResolved in interface RepositoryListenerevent - The event details, must not be null.public void artifactResolving(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getArtifact() denotes
 the artifact in question. Unlike the RepositoryListener.artifactDownloading(RepositoryEvent) event, this event is fired
 regardless whether the artifact already exists locally or not.artifactResolving in interface RepositoryListenerevent - The event details, must not be null.public void metadataDeployed(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getMetadata() denotes the metadata in question and
 RepositoryEvent.getExceptions() indicates whether the upload succeeded or failed.metadataDeployed in interface RepositoryListenerevent - The event details, must not be null.public void metadataDeploying(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getMetadata() denotes the metadata in question and
 RepositoryEvent.getRepository() the destination repository.metadataDeploying in interface RepositoryListenerevent - The event details, must not be null.public void metadataDownloaded(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getMetadata() denotes the metadata in question and
 RepositoryEvent.getExceptions() indicates whether the download succeeded or failed. Unlike the
 RepositoryListener.metadataResolved(RepositoryEvent) event, this event is only fired when the metadata does not already
 exist locally.metadataDownloaded in interface RepositoryListenerevent - The event details, must not be null.public void metadataDownloading(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getMetadata() denotes the metadata in question and
 RepositoryEvent.getRepository() the source repository. Unlike the
 RepositoryListener.metadataResolving(RepositoryEvent) event, this event is only fired when the metadata does not already
 exist locally.metadataDownloading in interface RepositoryListenerevent - The event details, must not be null.public void metadataInstalled(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getMetadata() denotes the metadata in question and
 RepositoryEvent.getExceptions() indicates whether the installation succeeded or failed.metadataInstalled in interface RepositoryListenerevent - The event details, must not be null.public void metadataInstalling(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getMetadata() denotes the metadata in question.metadataInstalling in interface RepositoryListenerevent - The event details, must not be null.public void metadataInvalid(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getMetadata()
 indicates the invalid metadata and RepositoryEvent.getExceptions() carries the encountered errors. The
 underlying repository operation might still succeed, depending on whether the metadata in question is actually
 needed to carry out the resolution process.metadataInvalid in interface RepositoryListenerevent - The event details, must not be null.public void metadataResolved(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getMetadata() denotes the metadata in question and
 RepositoryEvent.getExceptions() indicates whether the resolution succeeded or failed. Unlike the
 RepositoryListener.metadataDownloaded(RepositoryEvent) event, this event is fired regardless whether the metadata already
 exists locally or not.metadataResolved in interface RepositoryListenerevent - The event details, must not be null.public void metadataResolving(RepositoryEvent event)
RepositoryListenerRepositoryEvent.getMetadata()
 denotes the metadata in question. Unlike the RepositoryListener.metadataDownloading(RepositoryEvent) event, this event is
 fired regardless whether the metadata already exists locally or not.metadataResolving in interface RepositoryListenerevent - The event details, must not be null.Copyright © 2010–2018 The Apache Software Foundation. All rights reserved.