Interface Agenda
- All Known Implementing Classes:
BasicAgenda
public interface Agenda
Interface for defining the execution and appliesTo of @{link ExecutionEnvironment}s for an Agenda.
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Method Summary
Modifier and TypeMethodDescriptionbooleanappliesTo(ExecutionEnvironment environment) Return if the Agenda applies to the given environmentvoidexecute(ExecutionEnvironment environment) Execute with the givenExecutionEnvironment
-
Method Details
-
execute
Execute with the givenExecutionEnvironment- Parameters:
environment-ExecutionEnvironmentto execute with
-
appliesTo
Return if the Agenda applies to the given environment- Parameters:
environment-ExecutionEnvironmentto check if the Agenda applies to.- Returns:
- true, if this Agenda applies to the given
ExecutionEnvironment
-