Class SecurityPatchesModeAction
- java.lang.Object
-
- jetbrains.buildServer.controllers.autoUpdate.SecurityPatchesModeAction
-
- All Implemented Interfaces:
ControllerAction
public class SecurityPatchesModeAction extends Object implements ControllerAction
-
-
Field Summary
Fields Modifier and Type Field Description static String
MODE_PARAM
-
Constructor Summary
Constructors Constructor Description SecurityPatchesModeAction(ServerSettingsImpl serverSettings, AuditLogFactory auditLogFactory)
-
Method Summary
All 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.void
process(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, org.jdom.Element ajaxResponse)
Run this action.
-
-
-
Field Detail
-
MODE_PARAM
public static final String MODE_PARAM
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SecurityPatchesModeAction
public SecurityPatchesModeAction(@NotNull ServerSettingsImpl serverSettings, @NotNull AuditLogFactory auditLogFactory)
-
-
Method Detail
-
canProcess
public boolean canProcess(@NotNull javax.servlet.http.HttpServletRequest request)
Description copied from interface:ControllerAction
Returns true if specified request can be processed by this action.- Specified by:
canProcess
in interfaceControllerAction
- Parameters:
request
- request- Returns:
- true, if this action can process given request
-
process
public void process(@NotNull javax.servlet.http.HttpServletRequest request, @NotNull javax.servlet.http.HttpServletResponse response, @Nullable org.jdom.Element ajaxResponse)
Description copied from interface:ControllerAction
Run this action.- Specified by:
process
in interfaceControllerAction
- Parameters:
request
- requestresponse
- responseajaxResponse
- response if action is called by an AJAX request
-
-