Interface IScriptImmutable
-
- All Superinterfaces:
IAbstractType
- All Known Subinterfaces:
IScript
- All Known Implementing Classes:
Script,ScriptImmutable
public interface IScriptImmutable extends IAbstractType
Read-only interface to an existing Script.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Get the description for this script.java.lang.StringgetEntity()Get the entity of the script.java.lang.StringgetName()Get the name for this script.java.lang.StringgetScript()Get the script itself.java.lang.StringgetScriptType()Get the type of script.-
Methods inherited from interface ch.systemsx.cisd.openbis.generic.server.jython.api.v1.IAbstractType
getCode
-
-
-
-
Method Detail
-
getEntity
java.lang.String getEntity()
Get the entity of the script. The values can be EXPERIMENT, SAMPLE, DATA_SET, MATERIAL.
-
getScriptType
java.lang.String getScriptType()
Get the type of script. The values can be either DYNAMIC or MANAGED
-
getDescription
java.lang.String getDescription()
Get the description for this script.- Specified by:
getDescriptionin interfaceIAbstractType
-
getName
java.lang.String getName()
Get the name for this script.
-
getScript
java.lang.String getScript()
Get the script itself.
-
-