Package org.xwiki.velocity
Interface VelocityConfiguration
-
@Role public interface VelocityConfiguration
Configuration properties for the Velocity module.You can override the default values for each of the configuration properties below by defining them in XWiki's global configuration file using a prefix of "velocity" followed by the property name. For example:
velocity.tools = listtool = org.apache.velocity.tools.generic.ListTool
- Since:
- 2.0M1
- Version:
- $Id: b9a847aa9e0f5dd3f0993719ec1babc6e4cd5cd7 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Properties
getProperties()
Properties
getTools()
-
-
-
Method Detail
-
getProperties
Properties getProperties()
- Returns:
- the Velocity properties as defined at http://velocity.apache.org/engine/devel/developer-guide.html#Velocity_Configuration_Keys_and_Values
-
getTools
Properties getTools()
- Returns:
- the list of configured Velocity Tools (the key is the name under which the tool will be available in the Velocity Context and the value is the tool's class name)
-
-