Class SetDataSourceTagSupport
- java.lang.Object
-
- javax.servlet.jsp.tagext.TagSupport
-
- org.apache.taglibs.standard.tag.common.sql.SetDataSourceTagSupport
-
- All Implemented Interfaces:
Serializable
,javax.servlet.jsp.tagext.IterationTag
,javax.servlet.jsp.tagext.JspTag
,javax.servlet.jsp.tagext.Tag
- Direct Known Subclasses:
SetDataSourceTag
,SetDataSourceTag
,SetDataSourceTag
public class SetDataSourceTagSupport extends javax.servlet.jsp.tagext.TagSupport
Tag handler for <SetDataSource> in JSTL, used to create a simple DataSource for prototyping.
- Author:
- Hans Bergsten, Justyna Horwat
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Object
dataSource
protected boolean
dataSourceSpecified
protected String
driverClassName
protected String
jdbcURL
protected String
password
protected String
userName
-
Constructor Summary
Constructors Constructor Description SetDataSourceTagSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
doStartTag()
void
release()
void
setScope(String scope)
Setter method for the scope of the variable to hold the result.void
setVar(String var)
-
-
-
Method Detail
-
setScope
public void setScope(String scope)
Setter method for the scope of the variable to hold the result.
-
setVar
public void setVar(String var)
-
doStartTag
public int doStartTag() throws javax.servlet.jsp.JspException
- Specified by:
doStartTag
in interfacejavax.servlet.jsp.tagext.Tag
- Overrides:
doStartTag
in classjavax.servlet.jsp.tagext.TagSupport
- Throws:
javax.servlet.jsp.JspException
-
release
public void release()
- Specified by:
release
in interfacejavax.servlet.jsp.tagext.Tag
- Overrides:
release
in classjavax.servlet.jsp.tagext.TagSupport
-
-