Interface OrgUnitActivationStrategy<T extends OrgUnitModel>
-
- All Known Implementing Classes:
DefaultOrgUnitActivationStrategy
public interface OrgUnitActivationStrategy<T extends OrgUnitModel>Strategy for activating and deactivating anOrgUnitModel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidactivateUnit(T unit)Active the given unit.voiddeactivateUnit(T unit)Deactivate the given unit and all of its child units.
-
-
-
Method Detail
-
activateUnit
void activateUnit(T unit)
Active the given unit.- Parameters:
unit- theOrgUnitModelto activate
-
deactivateUnit
void deactivateUnit(T unit)
Deactivate the given unit and all of its child units.- Parameters:
unit- theOrgUnitModelto deactivate
-
-