package org.alfresco.repo.management.subsystems;
/**
* An 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 their
* {@link #isActive()} method always returns false
. {@link ChainingSubsystemProxyFactory} will ignore any
* ActivatableBean
s whose {@link #isActive()} method returns false
. This allows certain
* functions of a chained subsystem (e.g. CIFS authentication, SSO) to be targeted to specific members of the chain.
*
* @author dward
*/
public interface ActivateableBean
{
/**
* Determines whether this bean is active.
*
* @return true
if this bean is active
*/
public boolean isActive();
}