|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TurbineException | |
---|---|
org.apache.turbine.modules.actions.sessionvalidator | Session validator classes to be used with Turbine apps that use security. |
org.apache.turbine.pipeline | The Turbine processing pipeline is modelled 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.velocity | Velocity Service is used to provide Turbine with a Velocity based view. |
org.apache.turbine.util.security | Some helper classes and interfaces for the Security Service. |
org.apache.turbine.util.velocity | Velocity related utility code. |
Uses of TurbineException in org.apache.turbine.modules.actions.sessionvalidator |
---|
Methods in org.apache.turbine.modules.actions.sessionvalidator that throw TurbineException | |
---|---|
void |
TemplateSessionValidator.doPerform(PipelineData pipelineData)
Execute the action. |
void |
TemplateSecureSessionValidator.doPerform(PipelineData pipelineData)
doPerform is virtually identical to DefaultSessionValidator except that it calls template methods instead of bare screen methods. |
void |
DefaultSessionValidator.doPerform(PipelineData pipelineData)
Execute the action. |
void |
TemplateSessionValidator.doPerform(RunData data)
Deprecated. Use PipelineData version instead. |
void |
TemplateSecureSessionValidator.doPerform(RunData data)
Deprecated. Use PipelineData version instead. |
void |
DefaultSessionValidator.doPerform(RunData data)
Deprecated. Use PipelineData version instead. |
Uses of TurbineException in org.apache.turbine.pipeline |
---|
Methods in org.apache.turbine.pipeline that throw TurbineException | |
---|---|
void |
TurbinePipeline.invoke(PipelineData pipelineData)
|
void |
Pipeline.invoke(PipelineData data)
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. |
void |
Valve.invoke(PipelineData data,
ValveContext context)
Perform request processing as required by this Valve. |
void |
ExecutePageValve.invoke(PipelineData pipelineData,
ValveContext context)
|
void |
DetermineTargetValve.invoke(PipelineData pipelineData,
ValveContext context)
|
void |
DetermineRedirectRequestedValve.invoke(PipelineData pipelineData,
ValveContext context)
|
void |
DetermineActionValve.invoke(PipelineData pipelineData,
ValveContext context)
|
void |
DefaultSessionValidationValve.invoke(PipelineData pipelineData,
ValveContext context)
|
void |
DefaultSessionTimeoutValve.invoke(PipelineData pipelineData,
ValveContext context)
|
void |
DefaultLoginValve.invoke(PipelineData pipelineData,
ValveContext context)
|
void |
DefaultACLCreationValve.invoke(PipelineData pipelineData,
ValveContext context)
|
void |
CleanUpValve.invoke(PipelineData pipelineData,
ValveContext context)
|
abstract void |
AbstractValve.invoke(PipelineData data,
ValveContext context)
|
void |
ValveContext.invokeNext(PipelineData data)
Cause the invoke() 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 this ValveContext instance. |
void |
TurbinePipeline.invokeNext(PipelineData pipelineData)
|
Uses of TurbineException in org.apache.turbine.services |
---|
Subclasses of TurbineException in org.apache.turbine.services | |
---|---|
class |
InitializationException
Thrown by Initable class in case of initialization
problems. |
Uses of TurbineException in org.apache.turbine.services.assemblerbroker |
---|
Methods in org.apache.turbine.services.assemblerbroker that throw TurbineException | |
---|---|
Assembler |
TurbineAssemblerBrokerService.getAssembler(String type,
String name)
Attempt to retrieve an Assembler of a given type with a name. |
static Assembler |
TurbineAssemblerBroker.getAssembler(String type,
String name)
Return an Assembler for a given type and object name. |
Assembler |
AssemblerBrokerService.getAssembler(String type,
String name)
Attempts to load an Assembler of a type with a given name |
Uses of TurbineException in org.apache.turbine.services.jsp |
---|
Methods in org.apache.turbine.services.jsp that throw TurbineException | |
---|---|
static void |
TurbineJsp.handleRequest(PipelineData pipelineData,
String templateName)
executes the JSP given by templateName. |
static void |
TurbineJsp.handleRequest(PipelineData pipelineData,
String templateName,
boolean isForward)
executes the JSP given by templateName. |
void |
TurbineJspService.handleRequest(RunData data,
String templateName)
executes the JSP given by templateName. |
static void |
TurbineJsp.handleRequest(RunData data,
String templateName)
Deprecated. Use the PipelineData version. |
void |
JspService.handleRequest(RunData data,
String templateName)
executes the JSP given by templateName. |
void |
TurbineJspService.handleRequest(RunData data,
String templateName,
boolean isForward)
executes the JSP given by templateName. |
static void |
TurbineJsp.handleRequest(RunData data,
String templateName,
boolean isForward)
Deprecated. Use the PipelineData version. |
void |
JspService.handleRequest(RunData data,
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 | |
---|---|
RunData |
TurbineRunDataService.getRunData(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res,
javax.servlet.ServletConfig config)
Gets a default RunData object. |
RunData |
RunDataService.getRunData(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res,
javax.servlet.ServletConfig config)
Gets a default RunData object. |
RunData |
TurbineRunDataService.getRunData(String key,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res,
javax.servlet.ServletConfig config)
Gets a RunData instance from a specific configuration. |
RunData |
RunDataService.getRunData(String key,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res,
javax.servlet.ServletConfig config)
Gets a RunData object from a specific configuration. |
Uses of TurbineException in org.apache.turbine.services.schedule |
---|
Methods in org.apache.turbine.services.schedule that throw TurbineException | |
---|---|
void |
TurbineSchedulerService.addJob(JobEntry je)
Add a new job to the queue. |
static void |
TurbineScheduler.addJob(JobEntry je)
Add a new job to the queue. |
void |
TurbineNonPersistentSchedulerService.addJob(JobEntry je)
Add a new job to the queue. |
void |
ScheduleService.addJob(JobEntry je)
Add a new job to the queue. |
void |
JobEntryInterface.calcRunTime()
Calculate how long before the next runtime. |
void |
JobEntry.calcRunTime()
Calculate how long before the next runtime. |
JobEntry |
TurbineSchedulerService.getJob(int oid)
Get a specific Job from Storage. |
static JobEntry |
TurbineScheduler.getJob(int oid)
Get a specific Job from Storage. |
JobEntry |
TurbineNonPersistentSchedulerService.getJob(int oid)
This method returns the job element from the internal queue. |
JobEntry |
ScheduleService.getJob(int oid)
Get a specific Job from Storage. |
void |
JobQueue.modify(JobEntry je)
Modify a job on the queue. |
protected JobEntry |
TurbineSchedulerService.nextJob()
Return the next Job to execute, or null if thread is interrupted. |
void |
TurbineSchedulerService.removeJob(JobEntry je)
Remove a job from the queue. |
static void |
TurbineScheduler.removeJob(JobEntry je)
Remove a job from the queue. |
void |
ScheduleService.removeJob(JobEntry je)
Remove a job from the queue. |
void |
TurbineSchedulerService.updateJob(JobEntry je)
Add or update a job. |
static void |
TurbineScheduler.updateJob(JobEntry je)
Add or update a job |
void |
TurbineNonPersistentSchedulerService.updateJob(JobEntry je)
Add/update a job |
void |
ScheduleService.updateJob(JobEntry je)
Modify a Job. |
void |
JobQueue.updateQueue(JobEntry je)
Update the job for its next run time. |
Constructors in org.apache.turbine.services.schedule that throw TurbineException | |
---|---|
JobEntry(int sec,
int min,
int hour,
int wd,
int day_mo,
String task)
Constuctor. |
|
TurbineNonPersistentSchedulerService()
Constructor. |
Uses of TurbineException in org.apache.turbine.services.velocity |
---|
Methods in org.apache.turbine.services.velocity that throw TurbineException | |
---|---|
String |
TurbineVelocityService.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. |
void |
VelocityService.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. |
void |
TurbineVelocityService.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. |
void |
VelocityService.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. |
void |
TurbineVelocityService.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.security |
---|
Subclasses of TurbineException in org.apache.turbine.util.security | |
---|---|
class |
AccessControlException
Thrown to indicate that the User attempted to perform an operation that was not permitted by the security settings. |
class |
DataBackendException
Thrown to indicate that there was an error accessing the data backend of the SecurityService. |
class |
EntityExistsException
Thrown upon an attempt to create an User,Role,Group or Permission that already exists. |
class |
PasswordMismatchException
Thrown to indicate that the password supplied by user was incorrect. |
class |
TurbineSecurityException
Thrown by SecurityService methods to indicate various problems. |
class |
UnknownEntityException
Thrown to indicate that the User,Role,Group or Permission that was requested does not exist. |
Uses of TurbineException in org.apache.turbine.util.velocity |
---|
Subclasses of TurbineException in org.apache.turbine.util.velocity | |
---|---|
class |
VelocityEmailException
This exception is thrown if a VelocityEmail/VelocityHtmlEmail can not be sent using JavaMail. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |