Class AbstractScriptingTemplate
- java.lang.Object
-
- lumis.portal.serviceinterface.style.impl.scripting.AbstractScriptingTemplate
-
- All Implemented Interfaces:
IScriptingStyleTemplate
- Direct Known Subclasses:
GroovyStyleFactory.GroovyScriptingStyleTemplate
,JavascriptStyleFactory.JavascriptScriptingStyleTemplate
public abstract class AbstractScriptingTemplate extends Object implements IScriptingStyleTemplate
Abstract scripting style template.- Since:
- 8.1.0
- Version:
- $Revision: 20531 $ $Date: 2017-09-21 16:44:29 -0300 (Thu, 21 Sep 2017) $
-
-
Constructor Summary
Constructors Constructor Description AbstractScriptingTemplate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getControlsByIdVariableName()
Returns the controls by id map variable name.String
getControlsByTypeVariableName()
Returns the controls by type map variable name.String
getDocumentVariableName()
Returns theDocument
variable name.String
getELVariableName()
Returns theIELResolver
variable name.String
getEndScriptTag()
Returns the end script tag.String
getOutVariableName()
Returns the output variable name.String
getRequestVariableName()
Returns the request variable name.String
getResponseVariableName()
Returns the response variable name.String
getRowsListVariableName()
Returns the rows list variable name.String
getStartScriptTag()
Returns the start script tag.String
getStartValueTag()
Returns the start value tag.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 String getStartValueTag()
Description copied from interface:IScriptingStyleTemplate
Returns the start value tag.- Specified by:
getStartValueTag
in interfaceIScriptingStyleTemplate
- Returns:
- the start value tag.
-
getStartScriptTag
public String getStartScriptTag()
Description copied from interface:IScriptingStyleTemplate
Returns the start script tag.- Specified by:
getStartScriptTag
in interfaceIScriptingStyleTemplate
- Returns:
- the start script tag.
-
getEndScriptTag
public String getEndScriptTag()
Description copied from interface:IScriptingStyleTemplate
Returns the end script tag.- Specified by:
getEndScriptTag
in interfaceIScriptingStyleTemplate
- Returns:
- the end script tag.
-
getOutVariableName
public String getOutVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the output variable name.- Specified by:
getOutVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the output variable name.
-
getRequestVariableName
public String getRequestVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the request variable name.- Specified by:
getRequestVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the request variable name.
-
getResponseVariableName
public String getResponseVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the response variable name.- Specified by:
getResponseVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the response variable name.
-
getELVariableName
public String getELVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns theIELResolver
variable name.- Specified by:
getELVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the
IELResolver
variable name.
-
getDocumentVariableName
public String getDocumentVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns theDocument
variable name.- Specified by:
getDocumentVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the
Document
variable name.
-
getXPathVariableName
public String getXPathVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns theIXPath
variable name.- Specified by:
getXPathVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the
IXPath
variable name.
-
getControlsByIdVariableName
public 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 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 String getRowsListVariableName()
Description copied from interface:IScriptingStyleTemplate
Returns the rows list variable name.- Specified by:
getRowsListVariableName
in interfaceIScriptingStyleTemplate
- Returns:
- the rows list variable name.
-
-