Package ratpack.thymeleaf3
Class ThymeleafModule.Config
- java.lang.Object
-
- ratpack.thymeleaf3.ThymeleafModule.Config
-
- Enclosing class:
- ThymeleafModule
public static class ThymeleafModule.Config extends java.lang.ObjectThe configuration object forThymeleafModule.
-
-
Constructor Summary
Constructors Constructor Description Config()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetTemplatesMode()The mode for templates.java.lang.StringgetTemplatesPrefix()The prefix for templates.java.lang.StringgetTemplatesSuffix()The suffix for templates.ThymeleafModule.ConfigtemplatesMode(java.lang.String templatesMode)Sets the mode for templates.ThymeleafModule.ConfigtemplatesPrefix(java.lang.String templatesPrefix)Sets the prefix for templates.ThymeleafModule.ConfigtemplateSuffix(java.lang.String templatesSuffix)Sets the suffix for templates.
-
-
-
Method Detail
-
getTemplatesMode
public java.lang.String getTemplatesMode()
The mode for templates."HTML" by default.
- Returns:
- the mode for templates.
-
getTemplatesPrefix
public java.lang.String getTemplatesPrefix()
The prefix for templates."thymeleaf" by default.
- Returns:
- the prefix for templates.
-
getTemplatesSuffix
public java.lang.String getTemplatesSuffix()
The suffix for templates.".html" by default.
- Returns:
- the suffix for templates.
-
templatesMode
public ThymeleafModule.Config templatesMode(java.lang.String templatesMode)
Sets the mode for templates.- Parameters:
templatesMode- the mode for templates- Returns:
- this
-
templatesPrefix
public ThymeleafModule.Config templatesPrefix(java.lang.String templatesPrefix)
Sets the prefix for templates.- Parameters:
templatesPrefix- the prefix for templates- Returns:
- this
-
templateSuffix
public ThymeleafModule.Config templateSuffix(java.lang.String templatesSuffix)
Sets the suffix for templates.- Parameters:
templatesSuffix- the suffix for templates- Returns:
- this
-
-