Package com.sun.enterprise.module
Interface RepositoryChangeListener
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.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
A new libary jar file was added to the repository.void
moduleAdded
(ModuleDefinition definition) A new module jar file was added to the repository.void
moduleRemoved
(ModuleDefinition definition) A module file was removed from the repositoryvoid
A 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
-