Class JobConfigInfo
- java.lang.Object
-
- org.apache.flink.runtime.rest.messages.JobConfigInfo
-
- All Implemented Interfaces:
ResponseBody
public class JobConfigInfo extends Object implements ResponseBody
Response type of theJobConfigHandler
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JobConfigInfo.Deserializer
Json deserializer for theJobConfigInfo
.static class
JobConfigInfo.ExecutionConfigInfo
Nested class to encapsulate the execution configuration.static class
JobConfigInfo.Serializer
Json serializer for theJobConfigInfo
.
-
Field Summary
Fields Modifier and Type Field Description static String
FIELD_NAME_EXECUTION_CONFIG
static String
FIELD_NAME_JOB_ID
static String
FIELD_NAME_JOB_NAME
-
Constructor Summary
Constructors Constructor Description JobConfigInfo(JobID jobId, String jobName, JobConfigInfo.ExecutionConfigInfo executionConfigInfo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
JobConfigInfo.ExecutionConfigInfo
getExecutionConfigInfo()
JobID
getJobId()
String
getJobName()
int
hashCode()
-
-
-
Field Detail
-
FIELD_NAME_JOB_ID
public static final String FIELD_NAME_JOB_ID
- See Also:
- Constant Field Values
-
FIELD_NAME_JOB_NAME
public static final String FIELD_NAME_JOB_NAME
- See Also:
- Constant Field Values
-
FIELD_NAME_EXECUTION_CONFIG
public static final String FIELD_NAME_EXECUTION_CONFIG
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JobConfigInfo
public JobConfigInfo(JobID jobId, String jobName, @Nullable JobConfigInfo.ExecutionConfigInfo executionConfigInfo)
-
-
Method Detail
-
getJobId
public JobID getJobId()
-
getJobName
public String getJobName()
-
getExecutionConfigInfo
@Nullable public JobConfigInfo.ExecutionConfigInfo getExecutionConfigInfo()
-
-