public interface RepositoryChangeListener
Listener interface to listen to repository changes. Implementations of this listener
interface will be notified when repositories they registered to are changing.
- Author:
- Jerome Dochez
-
Method Summary
Modifier and TypeMethodDescriptionvoidA 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 repositoryvoidA library jar file was removed from the repository
-
Method Details
-
added
A new libary jar file was added to the repository.- Parameters:
location- the new jar file location
-
removed
A library jar file was removed from the repository- Parameters:
location- of the removed file
-
moduleAdded
A new module jar file was added to the repository.- Parameters:
definition- the new module definition
-
moduleRemoved
A module file was removed from the repository- Parameters:
definition- the module definition of the removed module
-