Package org.openstack4j.model.sahara
Interface JobExecution
-
- All Superinterfaces:
Buildable<JobExecutionBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
SaharaJobExecution
public interface JobExecution extends ModelEntity, Buildable<JobExecutionBuilder>
An Openstack Sahara Job Execution- Author:
- ekasit.kijsipongse@nectec.or.th, siwat.pru@outlook.com
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetClusterId()DategetCreatedAt()DategetEndtime()StringgetId()JobExecutionInfogetInfo()StringgetInputId()JobConfiggetJobConfigs()StringgetJobId()StringgetJobIdForExecution()StringgetOozieJobId()StringgetOutputId()StringgetProgress()StringgetReturnCode()DategetStartTime()StringgetTenantId()DategetUpdatedAt()
-
-
-
Method Detail
-
getClusterId
String getClusterId()
- Returns:
- the cluster identifier
-
getInputId
String getInputId()
- Returns:
- the input identifier
-
getOutputId
String getOutputId()
- Returns:
- the output identifier
-
getJobConfigs
JobConfig getJobConfigs()
- Returns:
- the job configurations
-
getTenantId
String getTenantId()
- Returns:
- the tenant id of the job execution
-
getStartTime
Date getStartTime()
- Returns:
- start time of the job execution
-
getEndtime
Date getEndtime()
- Returns:
- end time of the job execution
-
getCreatedAt
Date getCreatedAt()
- Returns:
- create time of the job execution
-
getUpdatedAt
Date getUpdatedAt()
- Returns:
- update time of the job execution
-
getReturnCode
String getReturnCode()
- Returns:
- return code of the job execution
-
getOozieJobId
String getOozieJobId()
- Returns:
- the OOzie job identifier
-
getJobId
String getJobId()
- Returns:
- the job identifier
-
getId
String getId()
- Returns:
- the job execution identifier
-
getProgress
String getProgress()
- Returns:
- the progress of the job execution
-
getInfo
JobExecutionInfo getInfo()
- Returns:
- informations of the job executions
-
getJobIdForExecution
String getJobIdForExecution()
- Returns:
- the job identifier
-
-