Class AbstractScriptingTemplate
- java.lang.Object
-
- lumis.portal.serviceinterface.style.impl.scripting.AbstractScriptingTemplate
-
- All Implemented Interfaces:
IScriptingStyleTemplate
- Direct Known Subclasses:
AbstractJavascriptStyleFactory.JavascriptScriptingStyleTemplate
,GroovyStyleFactory.GroovyScriptingStyleTemplate
public abstract class AbstractScriptingTemplate extends java.lang.Object implements IScriptingStyleTemplate
Abstract scripting style template.- Since:
- 8.1.0
- Version:
- $Revision: 25003 $ $Date: 2022-05-12 11:09:19 -0300 (Thu, 12 May 2022) $
-
-
Constructor Summary
Constructors Constructor Description AbstractScriptingTemplate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getControlsByIdVariableName()
Returns the controls by id map variable name.java.lang.String
getControlsByTypeVariableName()
Returns the controls by type map variable name.java.lang.String
getDocumentVariableName()
Returns theDocument
variable name.java.lang.String
getELVariableName()
Returns theIELResolver
variable name.java.lang.String
getEndScriptTag()
Returns the end script tag.java.lang.String
getOutVariableName()
Returns the output variable name.java.lang.String
getRequestVariableName()
Returns the request variable name.java.lang.String
getResponseVariableName()
Returns the response variable name.java.lang.String
getRowsListVariableName()
Returns the rows list variable name.java.lang.String
getStartScriptTag()
Returns the start script tag.java.lang.String
getStartValueTag()
Returns the start value tag.java.lang.String
getUrlProcessorVariableName()
Returns the variable name for anIScriptingStyleURLProcessor
.java.lang.String
getXPathVariableName()
Returns theIXPath
variable name.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface lumis.portal.serviceinterface.style.impl.scripting.IScriptingStyleTemplate
getClassCallString, getEscapedString
-
-
-
-
Method Detail
-
getStartValueTag
public java.lang.String getStartValueTag()
Description copied from interface:IScriptingStyleTemplate
Returns the start value tag.- Specified by:
getStartValueTag
in interfaceIScriptingStyleTemplate
- Returns:
- the start value tag.
-
getStartScriptTag
public java.lang.String getStartScriptTag()
Description copied from interface:IScriptingStyleTemplate
Returns the start script tag.- Specified by:
getStartScriptTag
in interfaceIScriptingStyleTemplate
- Returns:
- the start script tag.
-
getEndScriptTag
public java.lang.String getEndScriptTag()
Description copied from interface:IScriptingStyleTemplate
Returns the end script tag.- Specified by:
getEndScriptTag
in interfaceIScriptingStyleTemplate
- Returns:
- the end script tag.
-
getOutVariableName
public java.lang.String getOutVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the output variable name.- Specified by:
getOutVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the output variable name.
-
getRequestVariableName
public java.lang.String getRequestVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the request variable name.- Specified by:
getRequestVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the request variable name.
-
getResponseVariableName
public java.lang.String getResponseVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the response variable name.- Specified by:
getResponseVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the response variable name.
-
getELVariableName
public java.lang.String getELVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns theIELResolver
variable name.- Specified by:
getELVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the
IELResolver
variable name.
-
getDocumentVariableName
public java.lang.String getDocumentVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns theDocument
variable name.- Specified by:
getDocumentVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the
Document
variable name.
-
getXPathVariableName
public java.lang.String getXPathVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns theIXPath
variable name.- Specified by:
getXPathVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the
IXPath
variable name.
-
getControlsByIdVariableName
public java.lang.String getControlsByIdVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the controls by id map variable name.- Specified by:
getControlsByIdVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the controls by id map variable name.
-
getControlsByTypeVariableName
public java.lang.String getControlsByTypeVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the controls by type map variable name.- Specified by:
getControlsByTypeVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the controls by type map variable name.
-
getRowsListVariableName
public java.lang.String getRowsListVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the rows list variable name.- Specified by:
getRowsListVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the rows list variable name.
-
getUrlProcessorVariableName
public java.lang.String getUrlProcessorVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the variable name for anIScriptingStyleURLProcessor
.- Specified by:
getUrlProcessorVariableName
in interfaceIScriptingStyleTemplate
-
-