net.nplus1.anduril.web.delegates.actions
Class ProcessClient

java.lang.Object
  extended bynet.nplus1.anduril.web.delegates.actions.ProcessClient
All Implemented Interfaces:
WebAction

public class ProcessClient
extends java.lang.Object
implements WebAction

Author:
brians

Constructor Summary
ProcessClient()
           
 
Method Summary
 java.lang.String[] getValidRoles()
          Method that returns the user roles that can access this action.
 java.lang.String process(RequestContext context)
          This method takes the request from the client and provides business logic based upon the request.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ProcessClient

public ProcessClient()
Method Detail

getValidRoles

public java.lang.String[] getValidRoles()
Description copied from interface: WebAction
Method that returns the user roles that can access this action.

Specified by:
getValidRoles in interface WebAction
Returns:
String [] roles that can access this action

process

public java.lang.String process(RequestContext context)
                         throws WebException
Description copied from interface: WebAction
This method takes the request from the client and provides business logic based upon the request. The process has access to not only the request but the clients session. The process returns the view for display.

Specified by:
process in interface WebAction
Parameters:
context - The data provided by the request
Returns:
String the view to display
Throws:
WebException