Class UpdateStateAction
- java.lang.Object
-
- jetbrains.buildServer.controllers.popupDialogs.impl.actions.BasePopupDialogAction<CheckListForm>
-
- jetbrains.buildServer.controllers.popupDialogs.checkLists.actions.UpdateStateAction
-
- All Implemented Interfaces:
PopupDialogAction<CheckListForm>
public class UpdateStateAction extends BasePopupDialogAction<CheckListForm>
- Author:
- Maxim.Manuylov Date: 10/1/11
-
-
Constructor Summary
Constructors Constructor Description UpdateStateAction()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canProcess(javax.servlet.http.HttpServletRequest request)
Returns true if specified request can be processed by this action.protected static Set<String>
getCheckedItemIds(javax.servlet.http.HttpServletRequest request)
boolean
process(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, org.jdom.Element ajaxResponse, CheckListForm form)
Run this action.-
Methods inherited from class jetbrains.buildServer.controllers.popupDialogs.impl.actions.BasePopupDialogAction
isAction
-
-
-
-
Method Detail
-
canProcess
public boolean canProcess(@NotNull javax.servlet.http.HttpServletRequest request)
Description copied from interface:PopupDialogAction
Returns true if specified request can be processed by this action.- Parameters:
request
- request- Returns:
- true, if this action can process given request
-
process
public boolean process(@NotNull javax.servlet.http.HttpServletRequest request, @NotNull javax.servlet.http.HttpServletResponse response, @NotNull org.jdom.Element ajaxResponse, @NotNull CheckListForm form)
Description copied from interface:PopupDialogAction
Run this action.- Parameters:
request
- requestresponse
- responseajaxResponse
- response if action is called by an AJAX requestform
- form- Returns:
- true, if form should be removed from session, false otherwise
-
-