Class UserPropertyAction
- java.lang.Object
-
- jetbrains.buildServer.controllers.actions.UserPropertyAction
-
- All Implemented Interfaces:
ControllerAction
public class UserPropertyAction extends Object implements ControllerAction
Created by IntelliJ IDEA. User: kir Date: Feb 10, 2009
-
-
Constructor Summary
Constructors Constructor Description UserPropertyAction(WebControllerManager manager, BaseController controller)
-
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.void
register()
-
-
-
Constructor Detail
-
UserPropertyAction
public UserPropertyAction(WebControllerManager manager, BaseController controller)
-
-
Method Detail
-
register
public void register()
-
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
-
-