Uses of Interface
org.glassfish.hk2.configuration.hub.api.Change
-
Packages that use Change Package Description org.glassfish.hk2.configuration.hub.api org.glassfish.hk2.configuration.hub.internal org.glassfish.hk2.configuration.internal -
-
Uses of Change in org.glassfish.hk2.configuration.hub.api
Method parameters in org.glassfish.hk2.configuration.hub.api with type arguments of type Change Modifier and Type Method Description void
BeanDatabaseUpdateListener. commitDatabaseChange(BeanDatabase oldDatabase, BeanDatabase currentDatabase, java.lang.Object commitMessage, java.util.List<Change> changes)
This method is called after the change of database has already happened.void
BeanDatabaseUpdateListener. prepareDatabaseChange(BeanDatabase currentDatabase, BeanDatabase proposedDatabase, java.lang.Object commitMessage, java.util.List<Change> changes)
This method will be called prior to the bean database being updated.void
BeanDatabaseUpdateListener. rollbackDatabaseChange(BeanDatabase currentDatabase, BeanDatabase proposedDatabase, java.lang.Object commitMessage, java.util.List<Change> changes)
If anyBeanDatabaseUpdateListener.prepareDatabaseChange(BeanDatabase, BeanDatabase, Object, List)
throws an exception this method will be called on all listeners whoseBeanDatabaseUpdateListener.prepareDatabaseChange(BeanDatabase, BeanDatabase, Object, List)
had already been succesfully called. -
Uses of Change in org.glassfish.hk2.configuration.hub.internal
Classes in org.glassfish.hk2.configuration.hub.internal that implement Change Modifier and Type Class Description class
ChangeImpl
Fields in org.glassfish.hk2.configuration.hub.internal with type parameters of type Change Modifier and Type Field Description private java.util.LinkedList<Change>
WriteableBeanDatabaseImpl. changes
Methods in org.glassfish.hk2.configuration.hub.internal with parameters of type Change Modifier and Type Method Description (package private) void
WriteableBeanDatabaseImpl. addChange(Change change)
Method parameters in org.glassfish.hk2.configuration.hub.internal with type arguments of type Change Modifier and Type Method Description (package private) void
HubImpl. activateCurrentDatabase(WriteableBeanDatabaseImpl writeableDatabase, java.lang.Object commitMessage, java.util.List<Change> changes, java.util.LinkedList<BeanDatabaseUpdateListener> completedListeners)
(package private) java.util.LinkedList<BeanDatabaseUpdateListener>
HubImpl. prepareCurrentDatabase(WriteableBeanDatabaseImpl writeableDatabase, java.lang.Object commitMessage, java.util.List<Change> changes)
(package private) void
HubImpl. rollbackCurrentDatabase(WriteableBeanDatabaseImpl writeableDatabase, java.lang.Object commitMessage, java.util.List<Change> changes, java.util.LinkedList<BeanDatabaseUpdateListener> completedListeners)
(package private) void
HubImpl. setCurrentDatabase(WriteableBeanDatabaseImpl writeableDatabase, java.lang.Object commitMessage, java.util.List<Change> changes)
-
Uses of Change in org.glassfish.hk2.configuration.internal
Method parameters in org.glassfish.hk2.configuration.internal with type arguments of type Change Modifier and Type Method Description void
ConfigurationListener. commitDatabaseChange(BeanDatabase reference, BeanDatabase newDatabase, java.lang.Object commitMessage, java.util.List<Change> changes)
void
ConfigurationListener. prepareDatabaseChange(BeanDatabase currentDatabase, BeanDatabase proposedDatabase, java.lang.Object commitMessage, java.util.List<Change> changes)
void
ConfigurationListener. rollbackDatabaseChange(BeanDatabase currentDatabase, BeanDatabase proposedDatabase, java.lang.Object commitMessage, java.util.List<Change> changes)
-