Class JobMessageParameters
- java.lang.Object
-
- org.apache.flink.runtime.rest.messages.MessageParameters
-
- org.apache.flink.runtime.rest.messages.JobMessageParameters
-
- Direct Known Subclasses:
CheckpointMessageParameters,JobAccumulatorsMessageParameters,JobExceptionsMessageParameters,JobMetricsMessageParameters,JobTaskManagerMessageParameters,JobVertexMessageParameters,RescalingStatusMessageParameters,RescalingTriggerMessageParameters
public class JobMessageParameters extends MessageParameters
Message parameters which require a job path parameter.
-
-
Field Summary
Fields Modifier and Type Field Description JobIDPathParameterjobPathParameter
-
Constructor Summary
Constructors Constructor Description JobMessageParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<MessagePathParameter<?>>getPathParameters()Returns the collection ofMessagePathParameterthat the request supports.Collection<MessageQueryParameter<?>>getQueryParameters()Returns the collection ofMessageQueryParameterthat the request supports.-
Methods inherited from class org.apache.flink.runtime.rest.messages.MessageParameters
isResolved, resolveUrl
-
-
-
-
Field Detail
-
jobPathParameter
public final JobIDPathParameter jobPathParameter
-
-
Method Detail
-
getPathParameters
public Collection<MessagePathParameter<?>> getPathParameters()
Description copied from class:MessageParametersReturns the collection ofMessagePathParameterthat the request supports. The collection should not be modifiable.- Specified by:
getPathParametersin classMessageParameters- Returns:
- collection of all supported message path parameters
-
getQueryParameters
public Collection<MessageQueryParameter<?>> getQueryParameters()
Description copied from class:MessageParametersReturns the collection ofMessageQueryParameterthat the request supports. The collection should not be modifiable.- Specified by:
getQueryParametersin classMessageParameters- Returns:
- collection of all supported message query parameters
-
-