com.flowcentraltech.flowcentral.codegeneration.constants.CodeGenerationModuleSysParamConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flowcentral-codegeneration Show documentation
Show all versions of flowcentral-codegeneration Show documentation
Flowcentral Code-generation Module
/*
* Copyright 2021-2024 FlowCentral Technologies Limited.
*
* Licensed 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 com.flowcentraltech.flowcentral.codegeneration.constants;
/**
* Code generation module system parameter constants.
*
* @author FlowCentral Technologies Limited
* @since 1.0
*/
public interface CodeGenerationModuleSysParamConstants {
String DEFAULT_CODEGEN_PACKAGE_BASE = "CDN-0001";
String MESSAGE_REPLACEMENT_LIST = "CDN-0002";
String CODEGEN_SKIP_PASSWORD_FIELDS = "CDN-0003";
String EXTENSIONS_SRC_PATH = "CDN-0004";
String UTILITIES_SRC_PATH = "CDN-0005";
String CODEGEN_TARGET_REPOSITORY = "CDN-0006";
String CODEGEN_TARGET_BRANCH = "CDN-0007";
String ENABLE_CODEGEN_TO_REPOSITORY = "CDN-0008";
String SNAPSHOT_SRC_PATH = "CDN-0009";
String SNAPSHOT_TARGET_REPOSITORY = "CDN-0010";
String SNAPSHOT_TARGET_BRANCH = "CDN-0011";
String ENABLE_SNAPSHOT_TO_REPOSITORY = "CDN-0012";
}