Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.jcorporate.expresso.core.controller.Controller

Uses of Controller in com.jcorporate.expresso.core.controller
 

Subclasses of Controller in com.jcorporate.expresso.core.controller
 class DBController
          An extension of the basic Controller object that knows how to connect to a database, and how to read it's own security information for each state
 class SecureIfSetController
          Controller that uses security if the security system is available.
 

Fields in com.jcorporate.expresso.core.controller declared as Controller
private  Controller State.myController
          Current controller that this state is assigned to.
 

Methods in com.jcorporate.expresso.core.controller that return Controller
static Controller Controller.instantiate(java.lang.String className)
          Factory method to create an Controller from it's name Do not call this function directly! Use ConfigManager.getControllerFactory() .getInstance(java.lang.String) instead.
 Controller DefaultControllerFactory.getController(java.lang.String className)
          Retrieve the Action controller that matches the class name
 Controller DefaultControllerFactory.getController(java.lang.String moduleName, java.lang.String className)
          Retrieve the Action controller that matches the class name The moduleName is ignored for this implementation.
 Controller DefaultControllerFactory.getController(ControllerRequest request)
          Retrieve the Action controller that matches the class name The Struts 1.1 modules are ignored for this implementation.
 Controller ControllerFactory.getController(java.lang.String className)
          Dumb construction method....
 Controller ControllerFactory.getController(java.lang.String module, java.lang.String className)
          Dumb construction method....
 Controller ControllerFactory.getController(ControllerRequest request)
          This method is similar to getController(className) except that it may try to route the construction call to the appropriate servlet constructor IF the request is a HttpServletControllerRequest AND the implementation chooses to accept this mission.
 Controller State.getController()
          retrieve the controller instance that is associated with this state
 Controller ExpressoActionServlet.getController(java.lang.String className)
          Struts compatible version of the controller factory.
 Controller ExpressoActionServlet.getController(java.lang.String moduleName, java.lang.String className)
          Struts compatible version of the controller factory.
 Controller ExpressoActionServlet.getController(ControllerRequest request)
          This method is similar to getController(className) except that it may try to route the construction call to the appropriate controlling servlet
 

Methods in com.jcorporate.expresso.core.controller with parameters of type Controller
private static java.util.Hashtable ServletControllerRequest.parseParamsReq(javax.servlet.http.HttpServletRequest req, Controller controller)
          Return a Hashtable of parameter name/parameter value pairs.
static ServletControllerRequest ServletControllerRequest.parseParamsMultiPart(org.apache.struts.upload.MultipartRequestHandler mp, org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Controller controller)
          Static constructor for creating an servlet controller request with all the acoutrements of the Struts Action execution signature.
static ServletControllerRequest ServletControllerRequest.parseParams(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Controller controller)
          Parse a regular servlet request for parameters (e.g.
 void State.setController(Controller newController)
          Set the 'parent' controller
 

Constructors in com.jcorporate.expresso.core.controller with parameters of type Controller
Transition(java.lang.String newState, Controller myController)
          Convenience method to transition to another state in this same controller.