Package org.keycloak.models
Interface ScriptModel
- All Known Implementing Classes:
Script
public interface ScriptModel
A representation of a Script with some additional meta-data.
- Author:
- Thomas Darimont
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetCode()
Returns the actual source code of the script.Returns the description of the script.getId()
Returns the unique id of the script.Returns the MIME-type if the script code, e.g.getName()
Returns the name of the script.Returns the realm id in which the script was defined.
-
Field Details
-
TEXT_JAVASCRIPT
MIME-Type for JavaScript- See Also:
-
-
Method Details
-
getId
String getId()Returns the unique id of the script. null for ad-hoc created scripts. -
getRealmId
String getRealmId()Returns the realm id in which the script was defined. -
getName
String getName()Returns the name of the script. -
getMimeType
String getMimeType()Returns the MIME-type if the script code, e.g. for Java Script the MIME-type,text/javascript
is used. -
getCode
String getCode()Returns the actual source code of the script. -
getDescription
String getDescription()Returns the description of the script.
-