Package org.apache.hop.execution
Class Execution
- java.lang.Object
-
- org.apache.hop.execution.Execution
-
public class Execution extends Object
This is all the static information we have about an execution. It contains no status information as such.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExecution.EnvironmentDetailType
-
Constructor Summary
Constructors Constructor Description Execution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCopyNr()Gets copyNrMap<String,String>getEnvironmentDetails()Gets environmentDetailsDategetExecutionStartDate()Gets executionStartDateExecutionTypegetExecutionType()Gets executionTypeStringgetExecutorXml()Gets executorXmlStringgetFilename()Gets filenameStringgetId()Gets idLogLevelgetLogLevel()Gets logLevelStringgetMetadataJson()Gets metadataJsonStringgetName()Gets nameMap<String,String>getParameterValues()Gets parameterValuesStringgetParentId()Gets parentIdDategetRegistrationDate()Gets registrationDateStringgetRunConfigurationName()Gets runConfigurationNameMap<String,String>getVariableValues()Gets variableValuesvoidsetCopyNr(String copyNr)Sets copyNrvoidsetEnvironmentDetails(Map<String,String> environmentDetails)Sets environmentDetailsvoidsetExecutionStartDate(Date executionStartDate)Sets executionStartDatevoidsetExecutionType(ExecutionType executionType)Sets executionTypevoidsetExecutorXml(String executorXml)Sets executorXmlvoidsetFilename(String filename)Sets filenamevoidsetId(String id)Sets idvoidsetLogLevel(LogLevel logLevel)Sets logLevelvoidsetMetadataJson(String metadataJson)Sets metadataJsonvoidsetName(String name)Sets namevoidsetParameterValues(Map<String,String> parameterValues)Sets parameterValuesvoidsetParentId(String parentId)Sets parentIdvoidsetRegistrationDate(Date registrationDate)Sets registrationDatevoidsetRunConfigurationName(String runConfigurationName)Sets runConfigurationNamevoidsetVariableValues(Map<String,String> variableValues)Sets variableValues
-
-
-
Method Detail
-
getName
public String getName()
Gets name- Returns:
- value of name
-
setName
public void setName(String name)
Sets name- Parameters:
name- value of name
-
getFilename
public String getFilename()
Gets filename- Returns:
- value of filename
-
setFilename
public void setFilename(String filename)
Sets filename- Parameters:
filename- value of filename
-
getId
public String getId()
Gets id- Returns:
- value of id
-
setId
public void setId(String id)
Sets id- Parameters:
id- value of id
-
getParentId
public String getParentId()
Gets parentId- Returns:
- value of parentId
-
setParentId
public void setParentId(String parentId)
Sets parentId- Parameters:
parentId- value of parentId
-
getExecutionType
public ExecutionType getExecutionType()
Gets executionType- Returns:
- value of executionType
-
setExecutionType
public void setExecutionType(ExecutionType executionType)
Sets executionType- Parameters:
executionType- value of executionType
-
getExecutorXml
public String getExecutorXml()
Gets executorXml- Returns:
- value of executorXml
-
setExecutorXml
public void setExecutorXml(String executorXml)
Sets executorXml- Parameters:
executorXml- value of executorXml
-
getMetadataJson
public String getMetadataJson()
Gets metadataJson- Returns:
- value of metadataJson
-
setMetadataJson
public void setMetadataJson(String metadataJson)
Sets metadataJson- Parameters:
metadataJson- value of metadataJson
-
getVariableValues
public Map<String,String> getVariableValues()
Gets variableValues- Returns:
- value of variableValues
-
setVariableValues
public void setVariableValues(Map<String,String> variableValues)
Sets variableValues- Parameters:
variableValues- value of variableValues
-
getRunConfigurationName
public String getRunConfigurationName()
Gets runConfigurationName- Returns:
- value of runConfigurationName
-
setRunConfigurationName
public void setRunConfigurationName(String runConfigurationName)
Sets runConfigurationName- Parameters:
runConfigurationName- value of runConfigurationName
-
getLogLevel
public LogLevel getLogLevel()
Gets logLevel- Returns:
- value of logLevel
-
setLogLevel
public void setLogLevel(LogLevel logLevel)
Sets logLevel- Parameters:
logLevel- value of logLevel
-
getParameterValues
public Map<String,String> getParameterValues()
Gets parameterValues- Returns:
- value of parameterValues
-
setParameterValues
public void setParameterValues(Map<String,String> parameterValues)
Sets parameterValues- Parameters:
parameterValues- value of parameterValues
-
getEnvironmentDetails
public Map<String,String> getEnvironmentDetails()
Gets environmentDetails- Returns:
- value of environmentDetails
-
setEnvironmentDetails
public void setEnvironmentDetails(Map<String,String> environmentDetails)
Sets environmentDetails- Parameters:
environmentDetails- value of environmentDetails
-
getRegistrationDate
public Date getRegistrationDate()
Gets registrationDate- Returns:
- value of registrationDate
-
setRegistrationDate
public void setRegistrationDate(Date registrationDate)
Sets registrationDate- Parameters:
registrationDate- value of registrationDate
-
getExecutionStartDate
public Date getExecutionStartDate()
Gets executionStartDate- Returns:
- value of executionStartDate
-
setExecutionStartDate
public void setExecutionStartDate(Date executionStartDate)
Sets executionStartDate- Parameters:
executionStartDate- value of executionStartDate
-
getCopyNr
public String getCopyNr()
Gets copyNr- Returns:
- value of copyNr
-
setCopyNr
public void setCopyNr(String copyNr)
Sets copyNr- Parameters:
copyNr- value of copyNr
-
-