Interface TemplateService
-
- All Known Implementing Classes:
TurbineTemplateService
public interface TemplateService extends Service
This service provides a method for mapping templates to their appropriate Screens or Navigations. It also allows templates to define a layout/navigations/screen modularization within the template structure. It also performs caching if turned on in the properties file.- Version:
- $Id$
- Author:
- John D. McNally, Jason van Zyl, Daniel Rall, Ilkka Priha
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_EXTENSION_KEYDefault Extension for the template names.static StringDEFAULT_EXTENSION_VALUEDefault value of the Turbine Module Cachingstatic StringDEFAULT_NAME"Default" name for Classes and Templatesstatic StringDEFAULT_TEMPLATE_KEYDefault Template Name.static StringDEFAULT_TEMPLATE_VALUEDefault value for the Template Namestatic charEXTENSION_SEPARATORCharacter that separates a Template Name from the Extensionstatic StringSERVICE_NAMEThe key under which this service is stored in TurbineServices.static charTEMPLATE_PARTS_SEPARATORCharacter that separates the various Template Parts
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetDefaultExtension()Get the default template name extension specified in the template service properties.StringgetDefaultLayout()Get the default layout module name of the template engine service corresponding to the default template name extension.StringgetDefaultLayoutName(String template)Get the default layout module name of the template engine service corresponding to the template name extension of the named template.StringgetDefaultLayoutName(PipelineData pipelineData)Find the default layout module name for the given request.StringgetDefaultLayoutTemplate()Get the default layout template name of the template engine service corresponding to the default template name extension.StringgetDefaultLayoutTemplateName(String template)Get the default layout template name of the template engine service corresponding to the template name extension of the named template.StringgetDefaultNavigation()Get the default navigation module name of the template engine service corresponding to the default template name extension.StringgetDefaultNavigationName(String template)Get the default navigation module name of the template engine service corresponding to the template name extension of the named template.StringgetDefaultPage()Get the default page module name of the template engine service corresponding to the default template name extension.StringgetDefaultPageName(String template)Get the default page module name of the template engine service corresponding to the template name extension of the named template.StringgetDefaultPageName(PipelineData pipelineData)Find the default page module name for the given request.StringgetDefaultScreen()Get the default screen module name of the template engine service corresponding to the default template name extension.StringgetDefaultScreenName(String template)Get the default screen module name of the template engine service corresponding to the template name extension of the named template.StringgetDefaultTemplate()Returns the Default Template Name with the Default Extension.StringgetExtension(String template)Return Extension for a supplied templateStringgetLayoutName(String template)Locate and return the name of the layout module to be used with the named layout template.StringgetLayoutTemplateName(String template)Locate and return the name of the layout template corresponding to the given screen template name parameter.StringgetNavigationName(String template)Locate and return the name of the navigation module to be used with the named navigation template.StringgetNavigationTemplateName(String template)Locate and return the name of the navigation template corresponding to the given template name parameter.StringgetScreenName(String template)Locate and return the name of the screen module to be used with the named screen template.StringgetScreenTemplateName(String template)Locate and return the name of the screen template corresponding to the given template name parameter.TemplateEngineServicegetTemplateEngineService(String template)TheTemplateEngineServiceassociated with the specified template's file extension.booleanisCaching()Returns true if the Template Service has caching activatedvoidregisterTemplateEngineService(TemplateEngineService service)Registers the provided template engine for use by theTemplateService.booleantemplateExists(String template, String[] templatePaths)Deprecated.Use templateExists from the various Templating EnginesString[]translateTemplatePaths(String[] templatePaths)Deprecated.Each template engine service should know how to translate a request onto a file.-
Methods inherited from interface org.apache.turbine.services.Initable
getInit, init, init, setInitableBroker, shutdown
-
Methods inherited from interface org.apache.turbine.services.Service
getConfiguration, getName, getProperties, setName, setServiceBroker
-
-
-
-
Field Detail
-
SERVICE_NAME
static final String SERVICE_NAME
The key under which this service is stored in TurbineServices.- See Also:
- Constant Field Values
-
DEFAULT_TEMPLATE_KEY
static final String DEFAULT_TEMPLATE_KEY
Default Template Name.- See Also:
- Constant Field Values
-
DEFAULT_TEMPLATE_VALUE
static final String DEFAULT_TEMPLATE_VALUE
Default value for the Template Name- See Also:
- Constant Field Values
-
DEFAULT_EXTENSION_KEY
static final String DEFAULT_EXTENSION_KEY
Default Extension for the template names.- See Also:
- Constant Field Values
-
DEFAULT_EXTENSION_VALUE
static final String DEFAULT_EXTENSION_VALUE
Default value of the Turbine Module Caching- See Also:
- Constant Field Values
-
EXTENSION_SEPARATOR
static final char EXTENSION_SEPARATOR
Character that separates a Template Name from the Extension- See Also:
- Constant Field Values
-
TEMPLATE_PARTS_SEPARATOR
static final char TEMPLATE_PARTS_SEPARATOR
Character that separates the various Template Parts- See Also:
- Constant Field Values
-
DEFAULT_NAME
static final String DEFAULT_NAME
"Default" name for Classes and Templates- See Also:
- Constant Field Values
-
-
Method Detail
-
isCaching
boolean isCaching()
Returns true if the Template Service has caching activated- Returns:
- true if Caching is active.
-
getDefaultExtension
String getDefaultExtension()
Get the default template name extension specified in the template service properties.- Returns:
- The default the extension.
-
getExtension
String getExtension(String template)
Return Extension for a supplied template- Parameters:
template- The template name- Returns:
- extension The extension for the supplied template
-
getDefaultTemplate
String getDefaultTemplate()
Returns the Default Template Name with the Default Extension. If the extension is unset, return only the template name- Returns:
- The default template Name
-
getDefaultPage
String getDefaultPage()
Get the default page module name of the template engine service corresponding to the default template name extension.- Returns:
- The default page module name.
-
getDefaultScreen
String getDefaultScreen()
Get the default screen module name of the template engine service corresponding to the default template name extension.- Returns:
- The default screen module name.
-
getDefaultLayout
String getDefaultLayout()
Get the default layout module name of the template engine service corresponding to the default template name extension.- Returns:
- The default layout module name.
-
getDefaultNavigation
String getDefaultNavigation()
Get the default navigation module name of the template engine service corresponding to the default template name extension.- Returns:
- The default navigation module name.
-
getDefaultLayoutTemplate
String getDefaultLayoutTemplate()
Get the default layout template name of the template engine service corresponding to the default template name extension.- Returns:
- The default layout template name.
-
getDefaultPageName
String getDefaultPageName(String template)
Get the default page module name of the template engine service corresponding to the template name extension of the named template.- Parameters:
template- The template name.- Returns:
- The default page module name.
-
getDefaultScreenName
String getDefaultScreenName(String template)
Get the default screen module name of the template engine service corresponding to the template name extension of the named template.- Parameters:
template- The template name.- Returns:
- The default screen module name.
-
getDefaultLayoutName
String getDefaultLayoutName(String template)
Get the default layout module name of the template engine service corresponding to the template name extension of the named template.- Parameters:
template- The template name.- Returns:
- The default layout module name.
-
getDefaultNavigationName
String getDefaultNavigationName(String template)
Get the default navigation module name of the template engine service corresponding to the template name extension of the named template.- Parameters:
template- The template name.- Returns:
- The default navigation module name.
-
getDefaultLayoutTemplateName
String getDefaultLayoutTemplateName(String template)
Get the default layout template name of the template engine service corresponding to the template name extension of the named template.- Parameters:
template- The template name.- Returns:
- The default layout template name.
-
getDefaultPageName
String getDefaultPageName(PipelineData pipelineData)
Find the default page module name for the given request.- Parameters:
pipelineData- The encapsulation of the request to retrieve the default page for.- Returns:
- The default page module name.
-
getDefaultLayoutName
String getDefaultLayoutName(PipelineData pipelineData)
Find the default layout module name for the given request.- Parameters:
pipelineData- The encapsulation of the request to retrieve the default layout for.- Returns:
- The default layout module name.
-
getScreenName
String getScreenName(String template) throws Exception
Locate and return the name of the screen module to be used with the named screen template.- Parameters:
template- The screen template name.- Returns:
- The found screen module name.
- Throws:
Exception- a generic exception.
-
getLayoutName
String getLayoutName(String template) throws Exception
Locate and return the name of the layout module to be used with the named layout template.- Parameters:
template- The layout template name.- Returns:
- The found layout module name.
- Throws:
Exception- a generic exception.
-
getNavigationName
String getNavigationName(String template) throws Exception
Locate and return the name of the navigation module to be used with the named navigation template.- Parameters:
template- The navigation template name.- Returns:
- The found navigation module name.
- Throws:
Exception- a generic exception.
-
getScreenTemplateName
String getScreenTemplateName(String template) throws Exception
Locate and return the name of the screen template corresponding to the given template name parameter.- Parameters:
template- The template name parameter.- Returns:
- The found screen template name.
- Throws:
Exception- a generic exception.
-
getLayoutTemplateName
String getLayoutTemplateName(String template) throws Exception
Locate and return the name of the layout template corresponding to the given screen template name parameter.- Parameters:
template- The template name parameter.- Returns:
- The found screen template name.
- Throws:
Exception- a generic exception.
-
getNavigationTemplateName
String getNavigationTemplateName(String template) throws Exception
Locate and return the name of the navigation template corresponding to the given template name parameter.- Parameters:
template- The template name parameter.- Returns:
- The found navigation template name.
- Throws:
Exception- a generic exception.
-
translateTemplatePaths
@Deprecated String[] translateTemplatePaths(String[] templatePaths)
Deprecated.Each template engine service should know how to translate a request onto a file.Translates the supplied template paths into their Turbine-canonical equivalent (probably absolute paths).- Parameters:
templatePaths- An array of template paths.- Returns:
- An array of translated template paths.
-
templateExists
@Deprecated boolean templateExists(String template, String[] templatePaths)
Deprecated.Use templateExists from the various Templating EnginesDelegates to the appropriateTemplateEngineServiceto check the existence of the specified template.- Parameters:
template- The template to check for the existence of.templatePaths- The paths to check for the template.- Returns:
- true if the given template exists
-
getTemplateEngineService
TemplateEngineService getTemplateEngineService(String template)
TheTemplateEngineServiceassociated with the specified template's file extension.- Parameters:
template- The template name.- Returns:
- The template engine service.
-
registerTemplateEngineService
void registerTemplateEngineService(TemplateEngineService service)
Registers the provided template engine for use by theTemplateService.- Parameters:
service- TheTemplateEngineServiceto register.
-
-