Class ChainedBeanPostLoad
java.lang.Object
io.ebeaninternal.server.deploy.ChainedBeanPostLoad
- All Implemented Interfaces:
io.ebean.event.BeanPostLoad
Handles multiple BeanPostLoad's for a given entity type.
-
Constructor Summary
ConstructorsConstructorDescriptionChainedBeanPostLoad(List<io.ebean.event.BeanPostLoad> list) Construct given the list of BeanPostLoad's. -
Method Summary
Modifier and TypeMethodDescriptionderegister(io.ebean.event.BeanPostLoad c) De-register a BeanPostLoad and return the resulting chain.booleanisRegisterFor(Class<?> cls) voidFire postLoad on all registered BeanPostLoad implementations.register(io.ebean.event.BeanPostLoad c) Register a new BeanPostLoad and return the resulting chain.
-
Constructor Details
-
ChainedBeanPostLoad
Construct given the list of BeanPostLoad's.
-
-
Method Details
-
register
Register a new BeanPostLoad and return the resulting chain. -
deregister
De-register a BeanPostLoad and return the resulting chain. -
isRegisterFor
- Specified by:
isRegisterForin interfaceio.ebean.event.BeanPostLoad
-
postLoad
Fire postLoad on all registered BeanPostLoad implementations.- Specified by:
postLoadin interfaceio.ebean.event.BeanPostLoad
-