| |
|
| org.sakaiproject.content.api.ServiceLevelAction
All known Subclasses: org.sakaiproject.content.util.BaseServiceLevelAction,
Method Summary | |
public void | cancelAction(Reference reference) This method is invoked if the Resources tool cancels the action after invoking
the initializeAction(Reference reference) method in case the registrant needs to
clean up a canceled action at that point. | public void | finalizeAction(Reference reference) This method is invoked after the Resources tool does its part of the action
in case the registrant needs to participate in the action at that point. | public void | initializeAction(Reference reference) This method is invoked before the Resources tool does its part of the action
in case the registrant needs to participate in the action at that point. | public boolean | isMultipleItemAction() |
cancelAction | public void cancelAction(Reference reference)(Code) | | This method is invoked if the Resources tool cancels the action after invoking
the initializeAction(Reference reference) method in case the registrant needs to
clean up a canceled action at that point. Will not be invoked after
finalizeAction(Reference reference) is invoked.
Parameters: entity - A reference to the entity with respect to which the action is taken |
finalizeAction | public void finalizeAction(Reference reference)(Code) | | This method is invoked after the Resources tool does its part of the action
in case the registrant needs to participate in the action at that point. Will
not be invoked after cancelAction(Reference reference) is invoked.
Parameters: entity - A reference to the entity with respect to which the action is taken |
initializeAction | public void initializeAction(Reference reference)(Code) | | This method is invoked before the Resources tool does its part of the action
in case the registrant needs to participate in the action at that point.
Parameters: reference - A reference to the entity with respect to which the action is taken |
isMultipleItemAction | public boolean isMultipleItemAction()(Code) | | |
|
|
|