Uses of Class
au.gov.tas.dpiwe.mr.response.Response

Packages that use Response
au.gov.tas.dpiwe.mr The au.gov.tas.dpiwe.mr package contains the Mr Architecture EJB container and support classes and interfaces. 
au.gov.tas.dpiwe.mr.client The au.gov.tas.dpiwe.mr.client package contains the Mr Architecture EJB container implementation for use in clients, along with supporting classes and interfaces. 
au.gov.tas.dpiwe.mr.command The au.gov.tas.dpiwe.mr.command package contains the command tokens which are sent from the client container implementation to the server container implementation. 
au.gov.tas.dpiwe.mr.response The au.gov.tas.dpiwe.mr.response package contains the response tokens which are sent from the server container implementation back to the client container implementation. 
au.gov.tas.dpiwe.mr.server The au.gov.tas.dpiwe.mr.server package contains the Mr Architecture EJB container implementation for use in servers, along with supporting classes and interfaces. 
au.gov.tas.dpiwe.mr.tool The au.gov.tas.dpiwe.mr.tool package contains server monitor and control tools which can be run on clients, classes and interfaces supporting the deployment of Mr Architecture beans, including support classes for the Java close file format, as well as more general tools which allow the leverage of the Java close format in combination with Java language reflection to produce "instant wrappers". 
 

Uses of Response in au.gov.tas.dpiwe.mr
 

Methods in au.gov.tas.dpiwe.mr that return Response
 Response Container.doCommand(Command command)
          Internal method to perform a single command immediately.
abstract  Response Container.doCommand(Command command, boolean oneOff)
          Internal method to perform a single command immediately.
protected  Response Container.doCommandInTransactionContext(Command command)
          Internal method which executes a command (a) immediately if the calling thread has no defined transaction context or (b) at commit time if the calling thread is presently in the context of a transaction.
 

Uses of Response in au.gov.tas.dpiwe.mr.client
 

Methods in au.gov.tas.dpiwe.mr.client that return Response
 Response ClientContainer.doCommand(Command command, boolean oneOff)
           
 

Uses of Response in au.gov.tas.dpiwe.mr.command
 

Methods in au.gov.tas.dpiwe.mr.command that return Response
abstract  Response Command.getResponse()
           
 Response EndCommand.getResponse()
          EndCommand has no response.
 Response BeginCommand.getResponse()
          BeginCommand has no response.
 Response StatusCommand.getResponse()
          StatusCommand response is StatusResponse: : use constructor for that instead.
 Response HomeCommand.getResponse()
          HomeCommand response is either CreateResponse or FindResponse: use those constructors instead.
 Response AlertCommand.getResponse()
          Use AlertResponse constructor instead.
 Response HeimlichManeuver.getResponse()
          HeimlichManeuver response is HeimlichedObstruction: use constructor for that instead.
 Response StartCommand.getResponse()
          StartCommand response is StartResponse.
 Response FlushCommand.getResponse()
          FlushCommand response is FlushResponse.
 Response StoreCommand.getResponse()
           
 Response LockCommand.getResponse()
          LockCommand response is LockResponse.
 Response SelectCommand.getResponse()
          SelectCommand response is SelectResponse: : use constructor for that instead.
 Response InvokeCommand.getResponse()
          InvokeCommand response is InvokeResponse: use constructor for that instead.
 Response EchoCommand.getResponse()
          Use EchoResponse constructor instead.
 Response DaemonCommand.getResponse()
          DaemonCommand has no response.
 Response JoinCommand.getResponse()
          JoinCommand response is JoinResponse: use constructor for that instead.
 Response WipeCommand.getResponse()
          WipeCommand response is WipeResponse.
 Response RemoveCommand.getResponse()
          RemoveCommand response is RemoveResponse.
 Response LoadCommand.getResponse()
          LoadCommand response is LoadResponse: use constructor for that instead.
 Response StopCommand.getResponse()
          StopCommand response is StopResponse.
 Response LogCommand.getResponse()
          LogCommand response is LogResponse.
 Response DateCommand.getResponse()
          DateCommand response is DateResponse.
 

Methods in au.gov.tas.dpiwe.mr.command with parameters of type Response
 void TransactionalCommand.committed(Response response)
          Called when a response to this command is received.
 

Uses of Response in au.gov.tas.dpiwe.mr.response
 

Subclasses of Response in au.gov.tas.dpiwe.mr.response
 class AlertResponse
          The output of the alert command.
 class CreateResponse
          The output of the servlet for the create command, containing the passivated persistent entity bean.
 class DateResponse
          The output of the servlet for the date command, containing the server date and time.
 class FindResponse
          The output of the servlet for the find command, containing the passivated persistent entity bean with the primary key requested.
 class FlushResponse
          The output of the servlet for the flush command.
 class HeimlichedObstruction
          The output of the servlet for the Heimlich maneuver.
 class InvokeResponse
          The output of the servlet for the invoke command, containing the resulting bean and the object output by the method.
 class JoinResponse
          The CommandServlet's response to a JoinCommand, containing a collection of SiameseBeans.
 class LoadResponse
          The servlet's output for the load command, containing the repassivated persistent entity bean whose state was synchronized.
 class LockResponse
          The servlet's output for the lock command, containing the pooled entity bean for the home that has been locked.
 class LogResponse
          The output of the servlet for the log command.
 class PurgeResponse
          A response automatically output by the servlet to notify clients of beans which were recently modified.
 class RemoveResponse
          The servlet's output for the remove command, containing the now-pooled entity bean.
 class SelectResponse
          The output of the servlet for the select command, containing this and other passivated persistent entity beans forming the result set.
 class StartResponse
          The output of the servlet for the start daemon command.
 class StatusResponse
          The output of the servlet for the status command.
 class StopResponse
          The output of the servlet for the stop daemon command.
 class StoreResponse
          The servlet's output for the store command, containing the repassivated persistent entity bean after synchronization.
 class WipeResponse
          The output of the servlet for the wipe command.
 

Uses of Response in au.gov.tas.dpiwe.mr.server
 

Methods in au.gov.tas.dpiwe.mr.server that return Response
protected  Response ServerContainer.cacheResponse(Command command, Response response)
          Internal utility method which records the data we send to users in a memory-dependent cache keyed on the command they executed.
protected abstract  Response DatabaseBackedContainer.cacheResponse(Command command, Response response)
          Internal utility method which records the data we send to users in a memory-dependent cache keyed on the command they executed.
 Response ServerContainer.doCommand(Command command, boolean oneOff)
           
protected  Response LightweightContainer.doCommandInTransactionContext(Command command)
          Internal method which executes a command immediately.
 

Methods in au.gov.tas.dpiwe.mr.server with parameters of type Response
protected  Response ServerContainer.cacheResponse(Command command, Response response)
          Internal utility method which records the data we send to users in a memory-dependent cache keyed on the command they executed.
protected abstract  Response DatabaseBackedContainer.cacheResponse(Command command, Response response)
          Internal utility method which records the data we send to users in a memory-dependent cache keyed on the command they executed.
 

Uses of Response in au.gov.tas.dpiwe.mr.tool
 

Methods in au.gov.tas.dpiwe.mr.tool that return Response
 Response DeploymentContainer.doCommand(Command command, boolean oneOff)
          Internal method to perform a single command immediately.