Interface ScriptingLanguagesService
-
- All Known Implementing Classes:
DefaultScriptingLanguagesService,TestScriptingLanguagesService
public interface ScriptingLanguagesServiceThis interface provides methods for obtaining ScriptExecutable objects based on ScriptContent.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScriptExecutablegetExecutableByContent(ScriptContent scriptContent)Returns ready for execution object based on ScriptContent.ScriptExecutablegetExecutableByURI(java.lang.String scriptURI)Returns ready for execution object based on scriptURI.
-
-
-
Method Detail
-
getExecutableByContent
ScriptExecutable getExecutableByContent(ScriptContent scriptContent)
Returns ready for execution object based on ScriptContent. This kind of object is not cacheable.
-
getExecutableByURI
ScriptExecutable getExecutableByURI(java.lang.String scriptURI)
Returns ready for execution object based on scriptURI.ScriptURI must be in the form which is understandable by one of the registered script repositories.
- See Also:
ScriptsRepository
-
-