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 classJobConfigInfo.DeserializerJson deserializer for theJobConfigInfo.static classJobConfigInfo.ExecutionConfigInfoNested class to encapsulate the execution configuration.static classJobConfigInfo.SerializerJson serializer for theJobConfigInfo.
-
Field Summary
Fields Modifier and Type Field Description static StringFIELD_NAME_EXECUTION_CONFIGstatic StringFIELD_NAME_JOB_IDstatic StringFIELD_NAME_JOB_NAME
-
Constructor Summary
Constructors Constructor Description JobConfigInfo(org.apache.flink.api.common.JobID jobId, String jobName, JobConfigInfo.ExecutionConfigInfo executionConfigInfo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)JobConfigInfo.ExecutionConfigInfogetExecutionConfigInfo()org.apache.flink.api.common.JobIDgetJobId()StringgetJobName()inthashCode()
-
-
-
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(org.apache.flink.api.common.JobID jobId, String jobName, @Nullable JobConfigInfo.ExecutionConfigInfo executionConfigInfo)
-
-
Method Detail
-
getJobId
public org.apache.flink.api.common.JobID getJobId()
-
getJobName
public String getJobName()
-
getExecutionConfigInfo
@Nullable public JobConfigInfo.ExecutionConfigInfo getExecutionConfigInfo()
-
-