Class ScriptBuilder
- java.lang.Object
-
- org.identityconnectors.common.script.ScriptBuilder
-
-
Constructor Summary
Constructors Constructor Description ScriptBuilder()Creates a newScriptBuilder.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Scriptbuild()Creates aScript.StringgetScriptLanguage()Returns the language of the script.StringgetScriptText()Returns the text of the script.ScriptBuildersetScriptLanguage(String scriptLanguage)Sets the language of the script.ScriptBuildersetScriptText(String scriptText)Sets the text of the script.
-
-
-
Method Detail
-
getScriptLanguage
public String getScriptLanguage()
Returns the language of the script.- Returns:
- the script language.
-
setScriptLanguage
public ScriptBuilder setScriptLanguage(String scriptLanguage)
Sets the language of the script.- Parameters:
scriptLanguage- the script language.- Returns:
- this builder.
-
getScriptText
public String getScriptText()
Returns the text of the script.- Returns:
- the script text.
-
setScriptText
public ScriptBuilder setScriptText(String scriptText)
Sets the text of the script.- Parameters:
scriptText- the script text.- Returns:
- this builder.
-
build
public Script build()
Creates aScript. Prior to calling this method the language and the text should have been set.- Returns:
- a new script; never null.
-
-