Uses of Class
org.apache.turbine.util.TurbineException
-
Packages that use TurbineException Package Description org.apache.turbine.annotation org.apache.turbine.pipeline The Turbine processing pipeline is modeled after the pipeline found in Tomcat 4.0.1 (Catalina), and after the module architecture found in Apache httpd.org.apache.turbine.services Contains the Service framework for Turbine.org.apache.turbine.services.assemblerbroker Assemblerbroker Service looks for action, screen, page, layout classes based on class fragments.org.apache.turbine.services.jsp JSP Service is used to provide Turbine with a Java Server page (JSP) based view.org.apache.turbine.services.rundata Rundata Service provides a factory for the request cycle data objects.org.apache.turbine.services.schedule The scheduler service can run tasks in the background.org.apache.turbine.services.urlmapper Provide back-and-forth-mapping facilities for simplified URLs
$Id$org.apache.turbine.services.velocity Velocity Service is used to provide Turbine with a Velocity based view.org.apache.turbine.util.velocity Velocity related utility code. -
-
Uses of TurbineException in org.apache.turbine.annotation
Methods in org.apache.turbine.annotation that throw TurbineException Modifier and Type Method Description static voidAnnotationProcessor. process(Object object)Search for annotated fields of the object and inject the appropriate objects -
Uses of TurbineException in org.apache.turbine.pipeline
Methods in org.apache.turbine.pipeline that throw TurbineException Modifier and Type Method Description voidCleanUpValve. invoke(PipelineData pipelineData, ValveContext context)voidDefaultACLCreationValve. invoke(PipelineData pipelineData, ValveContext context)voidDefaultLoginValve. invoke(PipelineData pipelineData, ValveContext context)voidDefaultSessionTimeoutValve. invoke(PipelineData pipelineData, ValveContext context)Deprecated.voidDefaultSessionValidationValve. invoke(PipelineData pipelineData, ValveContext context)voidDefaultSetEncodingValve. invoke(PipelineData pipelineData, ValveContext context)voidDetermineActionValve. invoke(PipelineData pipelineData, ValveContext context)voidDetermineRedirectRequestedValve. invoke(PipelineData pipelineData, ValveContext context)voidDetermineTargetValve. invoke(PipelineData pipelineData, ValveContext context)voidExecutePageValve. invoke(PipelineData pipelineData, ValveContext context)voidPipeline. invoke(PipelineData pipelineData)Cause the specified request and response to be processed by the sequence of Valves associated with this pipeline, until one of these Valves decides to end the processing.voidTurbinePipeline. invoke(PipelineData pipelineData)voidValve. invoke(PipelineData pipelineData, ValveContext context)Perform request processing as required by this Valve.voidTurbinePipeline. invokeNext(PipelineData pipelineData)voidValveContext. invokeNext(PipelineData pipelineData)Cause theinvoke()method of the next Valve that is part of the Pipeline currently being processed (if any) to be executed, passing on the specified request and response objects plus thisValveContextinstance. -
Uses of TurbineException in org.apache.turbine.services
Subclasses of TurbineException in org.apache.turbine.services Modifier and Type Class Description classInitializationExceptionThrown byInitableclass in case of initialization problems. -
Uses of TurbineException in org.apache.turbine.services.assemblerbroker
Methods in org.apache.turbine.services.assemblerbroker that throw TurbineException Modifier and Type Method Description <T extends Assembler>
TAssemblerBrokerService. getAssembler(Class<T> type, String name)Attempts to load an Assembler of a type with a given name<T extends Assembler>
TTurbineAssemblerBrokerService. getAssembler(Class<T> type, String name)Attempt to retrieve an Assembler of a given type with a name. -
Uses of TurbineException in org.apache.turbine.services.jsp
Methods in org.apache.turbine.services.jsp that throw TurbineException Modifier and Type Method Description voidJspService. handleRequest(PipelineData pipelineData, String templateName)executes the JSP given by templateName.voidJspService. handleRequest(PipelineData pipelineData, String templateName, boolean isForward)executes the JSP given by templateName.voidTurbineJspService. handleRequest(PipelineData pipelineData, String templateName)executes the JSP given by templateName.voidTurbineJspService. handleRequest(PipelineData pipelineData, String templateName, boolean isForward)executes the JSP given by templateName. -
Uses of TurbineException in org.apache.turbine.services.rundata
Methods in org.apache.turbine.services.rundata that throw TurbineException Modifier and Type Method Description RunDataRunDataService. getRunData(String key, HttpServletRequest req, HttpServletResponse res, ServletConfig config)Gets a RunData object from a specific configuration.RunDataRunDataService. getRunData(HttpServletRequest req, HttpServletResponse res, ServletConfig config)Gets a default RunData object.RunDataTurbineRunDataService. getRunData(String key, HttpServletRequest req, HttpServletResponse res, ServletConfig config)Gets a RunData instance from a specific configuration.RunDataTurbineRunDataService. getRunData(HttpServletRequest req, HttpServletResponse res, ServletConfig config)Gets a default RunData object. -
Uses of TurbineException in org.apache.turbine.services.schedule
Methods in org.apache.turbine.services.schedule that throw TurbineException Modifier and Type Method Description voidAbstractSchedulerService. addJob(JobEntry je)Add a new job to the queue.voidQuartzSchedulerService. addJob(JobEntry je)Add a new job to the queue.voidScheduleService. addJob(JobEntry je)Add a new job to the queue.voidAbstractJobEntry. calcRunTime()Calculate how long before the next runtime.
The runtime determines it's position in the job queue.voidJobEntry. calcRunTime()Calculate how long before the next runtime.voidJobEntryQuartz. calcRunTime()abstract JobEntryAbstractSchedulerService. getJob(int oid)Get a specific Job from Storage.JobEntryQuartzSchedulerService. getJob(int oid)Get a specific Job from Storage.JobEntryScheduleService. getJob(int oid)Get a specific Job from Storage.JobEntryTorqueSchedulerService. getJob(int oid)Deprecated.Get a specific Job from Storage.JobEntryTurbineNonPersistentSchedulerService. getJob(int oid)Deprecated.This method returns the job element from the internal queue.protected abstract List<? extends JobEntry>AbstractSchedulerService. loadJobs()Load all jobs from configuration storageprotected List<? extends JobEntry>TorqueSchedulerService. loadJobs()Deprecated.Load all jobs from configuration storageprotected List<? extends JobEntry>TurbineNonPersistentSchedulerService. loadJobs()Deprecated.voidJobQueue. modify(J je)Modify a job on the queue.abstract JobEntryAbstractSchedulerService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)JobEntryQuartzSchedulerService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)JobEntryScheduleService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)Factory method for a new Job Schedule a job to run on a certain point of time.
Example 1: Run the DefaultScheduledJob at 8:00am every 15th of the month -
JobEntry je = newJob(0,0,8,-1,15,"DefaultScheduledJob");
Example 2: Run the DefaultScheduledJob at 8:00am every day -
JobEntry je = newJob(0,0,8,-1,-1,"DefaultScheduledJob");
Example 3: Run the DefaultScheduledJob every 2 hours. -
JobEntry je = newJob(0,120,-1,-1,-1,"DefaultScheduledJob");
Example 4: Run the DefaultScheduledJob every 30 seconds. -
JobEntry je = newJob(30,-1,-1,-1,-1,"DefaultScheduledJob");JobEntryTorqueSchedulerService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)Deprecated.JobEntryTurbineNonPersistentSchedulerService. newJob(int sec, int min, int hour, int wd, int day_mo, String task)Deprecated.protected JobEntryAbstractSchedulerService. nextJob()Return the next Job to execute, or null if thread is interrupted.abstract voidAbstractSchedulerService. removeJob(JobEntry je)Remove a job from the queue.voidQuartzSchedulerService. removeJob(JobEntry je)Remove a job from the queue.voidScheduleService. removeJob(JobEntry je)Remove a job from the queue.voidTorqueSchedulerService. removeJob(JobEntry je)Deprecated.Remove a job from the queue.abstract voidAbstractSchedulerService. updateJob(JobEntry je)Add or update a job.voidQuartzSchedulerService. updateJob(JobEntry je)Add or update a job.voidScheduleService. updateJob(JobEntry je)Modify a Job.voidTorqueSchedulerService. updateJob(JobEntry je)Deprecated.Add or update a job.voidTurbineNonPersistentSchedulerService. updateJob(JobEntry je)Deprecated.Add/update a jobvoidJobQueue. updateQueue(J je)Update the job for its next run time.Constructors in org.apache.turbine.services.schedule that throw TurbineException Constructor Description AbstractJobEntry(int sec, int min, int hour, int wd, int day_mo, String task)Constructor.JobEntryNonPersistent(int sec, int min, int hour, int wd, int day_mo, String task)Constructor. -
Uses of TurbineException in org.apache.turbine.services.urlmapper
Methods in org.apache.turbine.services.urlmapper that throw TurbineException Modifier and Type Method Description voidURLMapperValve. invoke(PipelineData pipelineData, ValveContext context) -
Uses of TurbineException in org.apache.turbine.services.velocity
Methods in org.apache.turbine.services.velocity that throw TurbineException Modifier and Type Method Description StringTurbineVelocityService. handleRequest(org.apache.velocity.context.Context context, String filename)Process the request and fill in the template with the values you set in the Context.voidTurbineVelocityService. handleRequest(org.apache.velocity.context.Context context, String filename, OutputStream output)Process the request and fill in the template with the values you set in the Context.voidTurbineVelocityService. handleRequest(org.apache.velocity.context.Context context, String filename, Writer writer)Process the request and fill in the template with the values you set in the Context.voidVelocityService. handleRequest(org.apache.velocity.context.Context context, String filename, OutputStream out)Process the request and fill in the template with the values you set in the Context.voidVelocityService. handleRequest(org.apache.velocity.context.Context context, String filename, Writer writer)Process the request and fill in the template with the values you set in the Context. -
Uses of TurbineException in org.apache.turbine.util.velocity
Subclasses of TurbineException in org.apache.turbine.util.velocity Modifier and Type Class Description classVelocityEmailExceptionThis exception is thrown if a VelocityEmail/VelocityHtmlEmail can not be sent using JavaMail.
-