Class VelocityUtil.VelocityTemplateMerger
java.lang.Object
de.uplanet.lucy.server.auxiliaries.VelocityUtil.VelocityTemplateMerger
- Enclosing class:
- VelocityUtil
-
Method Summary
Modifier and TypeMethodDescriptionGet the string output.Get the output encoding.Get the output file.org.apache.velocity.VelocityContext
Get the Velocity context used by this merger.void
merge()
Merge the Velocity template with the given context.void
setOutputEncoding
(String p_strOutputEncoding) Set the output encoding.void
setOutputFile
(String p_strOutputFile) Set the output file.
-
Method Details
-
merge
Merge the Velocity template with the given context.- Throws:
Exception
- If an error occurred.
-
getVelocityContext
public org.apache.velocity.VelocityContext getVelocityContext()Get the Velocity context used by this merger.- Returns:
- The Velocity context used by this merger.
-
getOutputFile
Get the output file.- Returns:
- The output file.
-
setOutputFile
Set the output file.- Parameters:
p_strOutputFile
- The output file.
-
getOutputEncoding
Get the output encoding.- Returns:
- The output encoding.
-
setOutputEncoding
Set the output encoding.- Parameters:
p_strOutputEncoding
- The output encoding.
-
getOutput
Get the string output.If this template merger was configured for file output, this method returns
null
.- Returns:
- The string output, or
null
.
-