cn.smallbun.scaffold.framework.common.constant.SystemConstants Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2018-2019.[zuoqinggang] www.pingfangushi.com
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package cn.smallbun.scaffold.framework.common.constant;
/**
* 系统常量
*
* @author SanLi
* Created by [email protected]/SanLi on 2018/4/30
*/
public class SystemConstants {
/**
* 冒号
*/
public static final String COLON = "::";
/**
* HTTP
*/
public static final String HTTP = "http";
/**
* HTTPS
*/
public static final String HTTPS = "https";
/**
* 私钥名称
*/
public static final String PRIVATE_KEY = "PRIVATE_KEY";
/**
* 公钥名称
*/
public static final String PUBLIC_KEY = "PUBLIC_KEY";
/**
* 秘钥存储名称
*/
public static final String PD_CURRENT_RSA_KEY = "PD_CURRENT_RSA_KEY";
/**
* 开发环境
*/
public static final String SPRING_PROFILE_DEVELOPMENT = "dev";
/**
* 测试环境
*/
public static final String SPRING_PROFILE_TEST = "test";
/**
* 生产环境
*/
public static final String SPRING_PROFILE_PRODUCTION = "prod";
/**
* 云
*/
public static final String SPRING_PROFILE_CLOUD = "cloud";
/**
* heroku
*/
public static final String SPRING_PROFILE_HEROKU = "heroku";
/**
* swagger
*/
public static final String SPRING_PROFILE_SWAGGER = "swagger";
/**
* liquibase
*/
public static final String SPRING_PROFILE_NO_LIQUIBASE = "no-liquibase";
/**
* k8s
*/
public static final String SPRING_PROFILE_K8S = "k8s";
/**
* SSL
*/
public static final String SERVER_SSL_KEY_STORE = "server.ssl.key-store";
public static final String ENDPOINT = "/gs-guide-websocket";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy