Class JarDeleteHeaders
- java.lang.Object
-
- org.apache.flink.runtime.webmonitor.handlers.JarDeleteHeaders
-
- All Implemented Interfaces:
RestHandlerSpecification
,MessageHeaders<EmptyRequestBody,EmptyResponseBody,JarDeleteMessageParameters>
,RuntimeMessageHeaders<EmptyRequestBody,EmptyResponseBody,JarDeleteMessageParameters>
,UntypedResponseMessageHeaders<EmptyRequestBody,JarDeleteMessageParameters>
public class JarDeleteHeaders extends Object implements RuntimeMessageHeaders<EmptyRequestBody,EmptyResponseBody,JarDeleteMessageParameters>
Message headers forJarDeleteHandler
.
-
-
Constructor Summary
Constructors Constructor Description JarDeleteHeaders()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Returns the description for this header.HttpMethodWrapper
getHttpMethod()
Returns theHttpMethodWrapper
to be used for the request.static JarDeleteHeaders
getInstance()
Class<EmptyRequestBody>
getRequestClass()
Returns the class of the request message.Class<EmptyResponseBody>
getResponseClass()
Returns the class of the response message.org.apache.flink.shaded.netty4.io.netty.handler.codec.http.HttpResponseStatus
getResponseStatusCode()
Returns the http status code for the response.String
getTargetRestEndpointURL()
Returns the generalized endpoint url that this request should be sent to, for example/job/:jobid
.JarDeleteMessageParameters
getUnresolvedMessageParameters()
Returns a newMessageParameters
object.String
operationId()
Returns a short description for this header suitable for method code generation.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.runtime.rest.messages.MessageHeaders
getCustomHeaders, getResponseTypeParameters
-
Methods inherited from interface org.apache.flink.runtime.rest.messages.RuntimeMessageHeaders
getSupportedAPIVersions
-
Methods inherited from interface org.apache.flink.runtime.rest.messages.UntypedResponseMessageHeaders
acceptsFileUploads
-
-
-
-
Method Detail
-
getResponseClass
public Class<EmptyResponseBody> getResponseClass()
Description copied from interface:MessageHeaders
Returns the class of the response message.- Specified by:
getResponseClass
in interfaceMessageHeaders<EmptyRequestBody,EmptyResponseBody,JarDeleteMessageParameters>
- Returns:
- class of the response message
-
getResponseStatusCode
public org.apache.flink.shaded.netty4.io.netty.handler.codec.http.HttpResponseStatus getResponseStatusCode()
Description copied from interface:MessageHeaders
Returns the http status code for the response.- Specified by:
getResponseStatusCode
in interfaceMessageHeaders<EmptyRequestBody,EmptyResponseBody,JarDeleteMessageParameters>
- Returns:
- http status code of the response
-
getRequestClass
public Class<EmptyRequestBody> getRequestClass()
Description copied from interface:UntypedResponseMessageHeaders
Returns the class of the request message.- Specified by:
getRequestClass
in interfaceUntypedResponseMessageHeaders<EmptyRequestBody,JarDeleteMessageParameters>
- Returns:
- class of the request message
-
getUnresolvedMessageParameters
public JarDeleteMessageParameters getUnresolvedMessageParameters()
Description copied from interface:UntypedResponseMessageHeaders
Returns a newMessageParameters
object.- Specified by:
getUnresolvedMessageParameters
in interfaceUntypedResponseMessageHeaders<EmptyRequestBody,JarDeleteMessageParameters>
- Returns:
- new message parameters object
-
getHttpMethod
public HttpMethodWrapper getHttpMethod()
Description copied from interface:RestHandlerSpecification
Returns theHttpMethodWrapper
to be used for the request.- Specified by:
getHttpMethod
in interfaceRestHandlerSpecification
- Returns:
- http method to be used for the request
-
getTargetRestEndpointURL
public String getTargetRestEndpointURL()
Description copied from interface:RestHandlerSpecification
Returns the generalized endpoint url that this request should be sent to, for example/job/:jobid
.- Specified by:
getTargetRestEndpointURL
in interfaceRestHandlerSpecification
- Returns:
- endpoint url that this request should be sent to
-
getInstance
public static JarDeleteHeaders getInstance()
-
operationId
public String operationId()
Description copied from interface:MessageHeaders
Returns a short description for this header suitable for method code generation.- Specified by:
operationId
in interfaceMessageHeaders<EmptyRequestBody,EmptyResponseBody,JarDeleteMessageParameters>
- Returns:
- short description
-
getDescription
public String getDescription()
Description copied from interface:MessageHeaders
Returns the description for this header.- Specified by:
getDescription
in interfaceMessageHeaders<EmptyRequestBody,EmptyResponseBody,JarDeleteMessageParameters>
- Returns:
- description for the header
-
-