zentol commented on a change in pull request #6754: [FLINK-10295] Add support of passing jar arguments as list of separate strings in REST API URL: https://github.com/apache/flink/pull/6754#discussion_r221549560
########## File path: flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/JarMessageParameters.java ########## @@ -0,0 +1,58 @@ +/* + * 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.MessageParameters; +import org.apache.flink.runtime.rest.messages.MessagePathParameter; +import org.apache.flink.runtime.rest.messages.MessageQueryParameter; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Collections; + +/** + * Base class of {@link MessageParameters} for {@link JarRunHandler} and {@link JarPlanHandler}. + */ +abstract class JarMessageParameters extends MessageParameters { + + final JarIdPathParameter jarIdPathParameter = new JarIdPathParameter(); + + final EntryClassQueryParameter entryClassQueryParameter = new EntryClassQueryParameter(); + + final ParallelismQueryParameter parallelismQueryParameter = new ParallelismQueryParameter(); + + final ProgramArgsQueryParameter programArgsQueryParameter = new ProgramArgsQueryParameter(); + + final ProgramArgsListQueryParameter programArgsListQueryParameter = new ProgramArgsListQueryParameter(); + + @Override + public Collection<MessagePathParameter<?>> getPathParameters() { + return Collections.singletonList(jarIdPathParameter); + } + + @Override + public Collection<MessageQueryParameter<?>> getQueryParameters() { + return new ArrayList<>(Arrays.asList( Review comment: This should continue to return an unmodifiable collection, otherwise all sub-classes have to wrap it again. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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
