Interface IScriptStepExecutable
-
- All Superinterfaces:
IDeploymentStepExecutable
,IStepExecutable
,Serializable
- All Known Implementing Classes:
AbstractScriptStepExecutable
,DisplayMessageStepExecutable
,RemoveBigDataDocumentTypesStepExecutable
,RemoveGlobalNonReferencedEntriesStepExecutable
,RunClassStepExecutable
,RunSqlStepExecutable
public interface IScriptStepExecutable extends IDeploymentStepExecutable
DeploymentIStepExecutable
internal implementation contract.- Since:
- 7.1.0
- Version:
- $Revision: 16037 $ $Date: 2013-11-21 20:58:50 -0200 (Thu, 21 Nov 2013) $
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IScriptStepExecutable.ScriptOwnerType
Enumeration that represents the owner of the script to be executed.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,List<EnvironmentType>>
getEnvironments()
Returns the environments.String
getOwnerId()
Returns this step's owner identifier.IScriptStepExecutable.ScriptOwnerType
getOwnerType()
Returns this step's owner type.String
getStepId()
Returns this step identifier.void
setOwnerId(String ownerId)
Sets this step's owner identifier.void
setOwnerType(IScriptStepExecutable.ScriptOwnerType ownerType)
Sets this step's owner type.void
setStepId(String stepId)
Sets this step identifier.-
Methods inherited from interface lumis.portal.deployment.stepexecutable.IDeploymentStepExecutable
isMandatory
-
Methods inherited from interface lumis.portal.interactiveprocess.IStepExecutable
execute, getDescription, getMessage, stepIgnored
-
-
-
-
Method Detail
-
getEnvironments
Map<String,List<EnvironmentType>> getEnvironments()
Returns the environments.- Returns:
- the environments.
- Since:
- 7.1.0
-
getOwnerId
String getOwnerId()
Returns this step's owner identifier.- Returns:
- this step's owner identifier.
- Since:
- 7.1.0
-
setOwnerId
void setOwnerId(String ownerId)
Sets this step's owner identifier.- Parameters:
ownerId
- this step's owner identifier.- Since:
- 7.1.0
-
getOwnerType
IScriptStepExecutable.ScriptOwnerType getOwnerType()
Returns this step's owner type.- Returns:
- this step's owner type.
- Since:
- 7.1.0
-
setOwnerType
void setOwnerType(IScriptStepExecutable.ScriptOwnerType ownerType)
Sets this step's owner type.- Parameters:
ownerType
- this step's owner type.- Since:
- 7.1.0
-
getStepId
String getStepId()
Returns this step identifier.- Returns:
- this step identifier.
- Since:
- 7.1.0
-
setStepId
void setStepId(String stepId)
Sets this step identifier.- Parameters:
stepId
- this step identifier.- Since:
- 7.1.0
-
-