| |
|
| java.lang.Object org.sakaiproject.content.util.BaseResourceAction org.sakaiproject.content.util.BaseServiceLevelAction
BaseServiceLevelAction | public class BaseServiceLevelAction extends BaseResourceAction implements ServiceLevelAction(Code) | | Created by IntelliJ IDEA.
User: johnellis
Date: Jan 26, 2007
Time: 10:17:14 AM
To change this template use File | Settings | File Templates.
|
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 void | invokeAction(Reference reference) This method effects this action on the entity specified. | public boolean | isMultipleItemAction() |
BaseServiceLevelAction | public BaseServiceLevelAction(String id, ActionType actionType, String typeId, boolean multipleItemAction)(Code) | | |
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 |
invokeAction | public void invokeAction(Reference reference)(Code) | | This method effects this action on the entity specified.
Parameters: reference - |
isMultipleItemAction | public boolean isMultipleItemAction()(Code) | | |
|
|
|