/* * 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.dolphinscheduler.data.project; public class CreatWorkflowData { //input shell task name public static final String SHELL_TASK_NAME = "shell task description test1"; //input shell task description public static final String SHELL_TASK_DESCRIPTION = "shell task description test"; //input timeout public static final String INPUT_TIMEOUT = "60"; //input shell script public static final String SHELL_SCRIPT = "echo 1111111"; //input custom parameters public static final String INPUT_CUSTOM_PARAMETERS = "selenium_parameter"; //input custom parameters value public static final String INPUT_CUSTOM_PARAMETERS_VALUE = "selenium_parameter_123"; //input add custom parameters public static final String INPUT_ADD_CUSTOM_PARAMETERS = "selenium_parameter_delete"; //input add custom parameters value public static final String INPUT_ADD_CUSTOM_PARAMETERS_VALUE = "selenium_parameter_delete_456"; //create workflow title public static final String WORKFLOW_TITLE = "创建流程定义 - DolphinScheduler"; }