dianfu commented on a change in pull request #8532: [FLINK-12541][REST] Support 
to submit Python Table API jobs via REST API
URL: https://github.com/apache/flink/pull/8532#discussion_r292024266
 
 

 ##########
 File path: 
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/AbstractArtifactPlanHeaders.java
 ##########
 @@ -0,0 +1,61 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.runtime.webmonitor.handlers;
+
+import org.apache.flink.runtime.rest.messages.JobPlanInfo;
+import org.apache.flink.runtime.rest.messages.MessageHeaders;
+
+import 
org.apache.flink.shaded.netty4.io.netty.handler.codec.http.HttpResponseStatus;
+
+/**
+ * Message headers for {@link ArtifactPlanHandler}.
+ */
+public abstract class AbstractArtifactPlanHeaders implements 
MessageHeaders<ArtifactPlanRequestBody, JobPlanInfo, 
ArtifactPlanMessageParameters> {
+
+       @Override
+       public Class<JobPlanInfo> getResponseClass() {
+               return JobPlanInfo.class;
+       }
+
+       @Override
+       public HttpResponseStatus getResponseStatusCode() {
+               return HttpResponseStatus.OK;
+       }
+
+       @Override
+       public Class<ArtifactPlanRequestBody> getRequestClass() {
+               return ArtifactPlanRequestBody.class;
+       }
+
+       @Override
+       public ArtifactPlanMessageParameters getUnresolvedMessageParameters() {
+               return new ArtifactPlanMessageParameters();
+       }
+
+       @Override
+       public String getTargetRestEndpointURL() {
+               return "/artifacts/:" + ArtifactIdPathParameter.KEY + "/plan";
 
 Review comment:
   That makes sense to me. +1

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to