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

    Fields
    Modifier and Type
    Field
    Description
    static final String
    MIME-Type for JavaScript
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the actual source code of the script.
    Returns the description of the script.
    Returns the unique id of the script.
    Returns the MIME-type if the script code, e.g.
    Returns the name of the script.
    Returns the realm id in which the script was defined.
  • Field Details

  • 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.