Interface Runtime
-
- All Known Implementing Classes:
AbstractRuntime,WebScriptServletRuntime,WebScriptViewRuntime
public interface RuntimeWeb Script Runtime- Author:
- davidc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainergetContainer()Gets the Web Script Container within which this Runtime is hostedjava.lang.StringgetName()Gets the name of the Web Script Runtimejava.util.Map<java.lang.String,java.lang.Object>getScriptParameters()Gets script parametersWebScriptSessiongetSession()Get the Web Script Sessionjava.util.Map<java.lang.String,java.lang.Object>getTemplateParameters()Gets template parameters
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the name of the Web Script Runtime- Returns:
- name
-
getSession
WebScriptSession getSession()
Get the Web Script Session- Returns:
- web script session
-
getContainer
Container getContainer()
Gets the Web Script Container within which this Runtime is hosted- Returns:
- web script container
-
getScriptParameters
java.util.Map<java.lang.String,java.lang.Object> getScriptParameters()
Gets script parameters- Returns:
- script parameters provided by the runtime
-
getTemplateParameters
java.util.Map<java.lang.String,java.lang.Object> getTemplateParameters()
Gets template parameters- Returns:
- template parameters provided by the runtime
-
-