Package com.sun.enterprise.module
Interface RepositoryChangeListener
-
public interface RepositoryChangeListenerListener interface to listen to repository changes. Implementations of this listener interface will be notified when repositories they registered to are changing.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadded(java.net.URI location)A new libary jar file was added to the repository.voidmoduleAdded(ModuleDefinition definition)A new module jar file was added to the repository.voidmoduleRemoved(ModuleDefinition definition)A module file was removed from the repositoryvoidremoved(java.net.URI location)A library jar file was removed from the repository
-
-
-
Method Detail
-
added
void added(java.net.URI location)
A new libary jar file was added to the repository.- Parameters:
location- the new jar file location
-
removed
void removed(java.net.URI location)
A library jar file was removed from the repository- Parameters:
location- of the removed file
-
moduleAdded
void moduleAdded(ModuleDefinition definition)
A new module jar file was added to the repository.- Parameters:
definition- the new module definition
-
moduleRemoved
void moduleRemoved(ModuleDefinition definition)
A module file was removed from the repository- Parameters:
definition- the module definition of the removed module
-
-