public interface Accessor
Accessor interface describes the access and release
stages that occur between a service or component manager and a container
during service deployment. Lifecycle extensions supporting access
and release stages must implement this interface.void access(java.lang.Object object,
org.apache.avalon.framework.context.Context context)
throws java.lang.Exception
object - the object that is being accessedcontext - the context instance required by the access handler
implementationjava.lang.Exception - if an error occursvoid release(java.lang.Object object,
org.apache.avalon.framework.context.Context context)
object - the object that is being releasedcontext - the context instance required by the release handler
implementation