public interface ContextualManager
You should implement this interface if your managed will be handled within the given EE context (eg: JavaEE CDI context).
.Modifier and Type | Method and Description |
---|---|
void |
destroy()
Use this method to destroy your manager within the given context (usually JavaEE CDI).
|
void |
initialize(UserSystemManager userSystemManager)
Use this method to initialize your manager within the given context (usually JavaEE CDI).
|
void initialize(UserSystemManager userSystemManager) throws Exception
Use this method to initialize your manager within the given context (usually JavaEE CDI).
userSystemManager
- The users system manager instance for the given context.Exception
Copyright © 2012–2020 JBoss by Red Hat. All rights reserved.