Interface ActivateableBean
-
- All Known Subinterfaces:
SubscriptionService
- All Known Implementing Classes:
AbstractChainingFtpAuthenticator,AlfrescoFtpAuthenticator,AuthenticationServiceImpl,DefaultRemoteUserMapper,FTPAuthenticatorBase,IdentityServiceAuthenticationComponent,IdentityServiceRemoteUserMapper,LDAPAuthenticationComponentImpl,LDAPUserRegistry,MutableAuthenticationServiceImpl,SubscriptionServiceImpl,SubsystemChainingFtpAuthenticator
public interface ActivateableBeanAn interface to be implemented by beans that can be 'turned off' by some configuration setting. When such beans are inactive, they will not perform any validation checks on initialization and will remain in a state where theirisActive()method always returnsfalse.ChainingSubsystemProxyFactorywill ignore anyActivatableBeans whoseisActive()method returnsfalse. This allows certain functions of a chained subsystem (e.g. CIFS authentication, SSO) to be targeted to specific members of the chain.- Author:
- dward
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisActive()Determines whether this bean is active.
-