Class SessionMessageParameters
- java.lang.Object
-
- org.apache.flink.runtime.rest.messages.MessageParameters
-
- org.apache.flink.table.gateway.rest.message.session.SessionMessageParameters
-
public class SessionMessageParameters extends MessageParameters
MessagePathParameter
for session handle.
-
-
Constructor Summary
Constructors Constructor Description SessionMessageParameters()
SessionMessageParameters(SessionHandle sessionHandle)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<MessagePathParameter<?>>
getPathParameters()
Returns the collection ofMessagePathParameter
that the request supports.Collection<MessageQueryParameter<?>>
getQueryParameters()
Returns the collection ofMessageQueryParameter
that the request supports.-
Methods inherited from class org.apache.flink.runtime.rest.messages.MessageParameters
isResolved, resolveUrl
-
-
-
-
Constructor Detail
-
SessionMessageParameters
public SessionMessageParameters()
-
SessionMessageParameters
public SessionMessageParameters(SessionHandle sessionHandle)
-
-
Method Detail
-
getPathParameters
public Collection<MessagePathParameter<?>> getPathParameters()
Description copied from class:MessageParameters
Returns the collection ofMessagePathParameter
that the request supports. The collection should not be modifiable.- Specified by:
getPathParameters
in classMessageParameters
- Returns:
- collection of all supported message path parameters
-
getQueryParameters
public Collection<MessageQueryParameter<?>> getQueryParameters()
Description copied from class:MessageParameters
Returns the collection ofMessageQueryParameter
that the request supports. The collection should not be modifiable.- Specified by:
getQueryParameters
in classMessageParameters
- Returns:
- collection of all supported message query parameters
-
-