JSPTemplates

org.tp23.jasper
Interface Options

All Known Implementing Classes:
JspC, EmbededServletOptions

public interface Options

A class to hold all init parameters specific to the JSP engine.

Author:
Anil K. Vijendran, Hans Bergsten, Paul Hinds

Method Summary
 java.lang.String getClassPath()
          What classpath should I use while compiling the servlets generated from JSP files?
 java.lang.String getIeClassId()
          Class ID for use in the plugin tag when the browser is IE.
 java.lang.String getJspCompilerPath()
          Path of the compiler to use for compiling JSP pages.
 java.lang.Class getJspCompilerPlugin()
          What compiler plugin should I use to compile the servlets generated from JSP files?
 boolean getKeepGenerated()
          Are we keeping generated code around?
 boolean getLargeFile()
          Are we supporting large files?
 boolean getMappedFile()
          Are we supporting HTML mapped servlets?
 java.lang.Object getProtectionDomain()
          ProtectionDomain for this JSP Context when using a SecurityManager
 java.io.File getScratchDir()
          What is my scratch dir?
 boolean getSendErrorToClient()
          Should errors be sent to client or thrown into stderr?
 

Method Detail

getKeepGenerated

public boolean getKeepGenerated()
Are we keeping generated code around?

getLargeFile

public boolean getLargeFile()
Are we supporting large files?

getMappedFile

public boolean getMappedFile()
Are we supporting HTML mapped servlets?

getSendErrorToClient

public boolean getSendErrorToClient()
Should errors be sent to client or thrown into stderr?

getIeClassId

public java.lang.String getIeClassId()
Class ID for use in the plugin tag when the browser is IE.

getScratchDir

public java.io.File getScratchDir()
What is my scratch dir?

getClassPath

public java.lang.String getClassPath()
What classpath should I use while compiling the servlets generated from JSP files?

getJspCompilerPlugin

public java.lang.Class getJspCompilerPlugin()
What compiler plugin should I use to compile the servlets generated from JSP files?

getJspCompilerPath

public java.lang.String getJspCompilerPath()
Path of the compiler to use for compiling JSP pages.

getProtectionDomain

public java.lang.Object getProtectionDomain()
ProtectionDomain for this JSP Context when using a SecurityManager

JSPTemplates