Uses of Interface
shocks.dawp.DataSource

Packages that use DataSource
shocks.client   
shocks.dawp   
shocks.framework.action   
shocks.framework.action.repository   
shocks.framework.meta   
shocks.framework.meta.repository   
shocks.framework.workflow.filter   
shocks.framework.workflow.filter.repository   
shocks.framework.workflow.sequence   
shocks.framework.workflow.sequence.repository   
 

Uses of DataSource in shocks.client
 

Classes in shocks.client that implement DataSource
 class Result
          DataSource containing information about the execution of a target Action.
 

Methods in shocks.client that return DataSource
 DataSource FilterSupport.execute(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext ctx)
          This method is final and cannot be overridden by the user.
 DataSource ActionSupport.execute(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext ctx)
          This method cannot be overridden by the user.
 

Methods in shocks.client with parameters of type DataSource
 void FilterSupport.setFilterMetadata(DataSource metadata)
          Staffs the filter with metadata from its enclosing Filter object.
 void ActionSupport.init(DataSource metadata)
           
 

Uses of DataSource in shocks.dawp
 

Methods in shocks.dawp that return DataSource
 DataSource Workflow.forward(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext ctx)
          Forwards a request on to another workflow component.
 DataSource Action.execute(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext ctx)
           
 

Uses of DataSource in shocks.framework.action
 

Methods in shocks.framework.action with parameters of type DataSource
 Action ActionRepository.leaseAction(DataSource metadata)
           
 

Uses of DataSource in shocks.framework.action.repository
 

Methods in shocks.framework.action.repository with parameters of type DataSource
 Action CentralActionRepositoryMBean.leaseAction(DataSource metadata)
           
 Action CentralActionRepository.leaseAction(DataSource metadata)
           
 Action ActionRepositoryProxy.leaseAction(DataSource metadata)
           
 

Uses of DataSource in shocks.framework.meta
 

Methods in shocks.framework.meta that return DataSource
 DataSource MetadataRepository.leaseDataSource(java.lang.String type, java.lang.String name)
          Lease a DataSource of the appropriate type and name from the appropriate instance pool.
 

Methods in shocks.framework.meta with parameters of type DataSource
 void MetadataRepository.addDataSource(DataSource instance)
          Installs a DataSource into an instance pool.
 void MetadataRepository.release(DataSource instance)
          Releases the specified DataSource back into its appropriate instance pool.
 

Uses of DataSource in shocks.framework.meta.repository
 

Classes in shocks.framework.meta.repository that implement DataSource
 class MDBean
          Encapsulates XML metadata for the workflow engine.
 

Methods in shocks.framework.meta.repository that return DataSource
 DataSource MetadataRepositoryProxy.leaseDataSource(java.lang.String type, java.lang.String name)
           
 DataSource MDBeanVersionCache.lease()
          Get the instance pool with the most recent version and return a readied DataSource instance.
 DataSource CentralMetadataRepositoryMBean.leaseDataSource(java.lang.String type, java.lang.String name)
           
 DataSource CentralMetadataRepository.leaseDataSource(java.lang.String type, java.lang.String name)
          Returns an instance of a DataSource of a matching name and type.
 

Methods in shocks.framework.meta.repository with parameters of type DataSource
 void MetadataRepositoryProxy.addDataSource(DataSource metadata)
           
 void MetadataRepositoryProxy.release(DataSource metadata)
          Release the DataSource back into the repository.
 void MDBeanVersionCache.add(DataSource instance)
           
 void MDBeanVersionCache.release(DataSource instance)
           
 void CentralMetadataRepositoryMBean.addDataSource(DataSource instance)
           
 void CentralMetadataRepositoryMBean.release(DataSource instance)
           
 void CentralMetadataRepository.addDataSource(DataSource instance)
          Adds the DataSource instance to an InstancePool, sorted by the element's type and name.
 void CentralMetadataRepository.release(DataSource instance)
          Releases a DataSource back into the pool.
 

Constructors in shocks.framework.meta.repository with parameters of type DataSource
MDBeanVersionCache(DataSource instance)
           
 

Uses of DataSource in shocks.framework.workflow.filter
 

Methods in shocks.framework.workflow.filter with parameters of type DataSource
 Workflow FilterRepository.leaseWorkflow(DataSource metadata)
           
 

Uses of DataSource in shocks.framework.workflow.filter.repository
 

Methods in shocks.framework.workflow.filter.repository that return DataSource
 DataSource Filter.forward(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext ctx)
          This method will execute the incoming action, process the result String, forward control on to the next Workflow component in the Sequence (if appropriate), process the Result action, execute the outgoing action and return control back into its enclosing Workflow object.
 

Methods in shocks.framework.workflow.filter.repository with parameters of type DataSource
 Workflow FilterRepositoryProxy.leaseWorkflow(DataSource metadata)
           
 Workflow CentralFilterRepositoryMBean.leaseWorkflow(DataSource metadata)
           
 Workflow CentralFilterRepository.leaseWorkflow(DataSource metadata)
           
 

Constructors in shocks.framework.workflow.filter.repository with parameters of type DataSource
Filter(DataSource metadata, Action incoming, Action outgoing)
           
 

Uses of DataSource in shocks.framework.workflow.sequence
 

Methods in shocks.framework.workflow.sequence with parameters of type DataSource
 Workflow SequenceRepository.leaseWorkflow(DataSource metadata)
          Leases a workflow component from the instance pool.
 

Uses of DataSource in shocks.framework.workflow.sequence.repository
 

Methods in shocks.framework.workflow.sequence.repository that return DataSource
 DataSource SequenceTerminator.forward(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext ctx)
           
 DataSource Sequence.forward(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext ctx)
           
 

Methods in shocks.framework.workflow.sequence.repository with parameters of type DataSource
 Workflow SequenceRepositoryProxy.leaseWorkflow(DataSource metadata)
           
 Workflow CentralSequenceRepositoryMBean.leaseWorkflow(DataSource metadata)
          Leases a workflow component from the instance pool.
 java.lang.String CentralSequenceRepositoryMBean.getVersion(DataSource metadata)
          Returns the current operating version of a workflow sequence.
 void CentralSequenceRepositoryMBean.setCurrentVersion(DataSource metadata, java.lang.String version)
          This method will set the current operating version of a workflow sequence to a previous existing version.
 java.util.SortedSet CentralSequenceRepositoryMBean.getVersions(DataSource metadata)
          Returns a SortedSet of all the existing version strings in descending order.
 Workflow CentralSequenceRepository.leaseWorkflow(DataSource metadata)
          Leases one instance of the appropriate sequence.
 java.lang.String CentralSequenceRepository.getVersion(DataSource metadata)
           
 void CentralSequenceRepository.setCurrentVersion(DataSource metadata, java.lang.String version)
           
 java.util.SortedSet CentralSequenceRepository.getVersions(DataSource metadata)
           
 

Constructors in shocks.framework.workflow.sequence.repository with parameters of type DataSource
Sequence(DataSource metadata, Workflow next)