Class Script
- java.lang.Object
-
- org.identityconnectors.common.script.Script
-
public final class Script extends java.lang.Object
Represents a script in a scripting language.- Since:
- 1.1
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getScriptLanguage()
Returns the language of this script.java.lang.String
getScriptText()
Returns the text of this script.int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
getScriptLanguage
public java.lang.String getScriptLanguage()
Returns the language of this script.- Returns:
- the script language; never null.
-
getScriptText
public java.lang.String getScriptText()
Returns the text of this script.- Returns:
- the script text; never null.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-