You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
598 B
31 lines
598 B
package net.educoder.constant;
|
|
|
|
/**
|
|
* @Author: youys
|
|
* @Date: 2022/8/17
|
|
* @Description: 常量
|
|
*/
|
|
public class CommonConstants {
|
|
|
|
public static final String API_TOKEN = "api_token";
|
|
|
|
/**
|
|
* 云主机默认用户
|
|
*/
|
|
public static final String DEFAULT_ROOT = "root";
|
|
|
|
/**
|
|
* 云主机默认密码
|
|
*/
|
|
public static final String DEFAULT_PASSWORD = "Educoder123";
|
|
|
|
/**
|
|
* 固定id类型
|
|
*/
|
|
public static final String FIXED_IP_TYPE = "fixed";
|
|
/**
|
|
* 浮动ip类型
|
|
*/
|
|
public static final String FLOATING_IP_TYPE = "floating";
|
|
}
|