caconst.java
来自「一个agent 工具包,可以开发移动设备应用,考虑了安全措施」· Java 代码 · 共 22 行
JAVA
22 行
package SOMA.security.infrastructure;
/** This interface implements the CA constant
* like port number and standard operation
* on the CA.
**/
interface CAConst {
// Default Entrust CA port number
public final static int DEFAULT_CA_PORT = 709;
public final static int DEFAULT_LDAP_PORT = 389;
//public final static String ING_BO_IP = "137.204.61.133";
public final static String ING_BO_IP = "192.167.215.124";
// To recover a profile
public final static int RECOVER_PROFILE = 1;
// To create a new profile
public final static int CREATE_PROFILE = 2;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?