liujie
21 小时以前 74f8b8074a2fb391b5363b4dca5f99bf31993430
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.supersavedriving.user.modular.system.util.bank.parmUtil;
 
/**
 * <p>
 * Description: 常量类
 * </p>
 */
public class Constants {
    /** 根目录*/
    public static final String ROOTPATH = System.getProperty("user.dir");
    /** 中信侧公钥路径*/
    public static final String PTNRTESTCER = "F:\\居间接入demo - 副本\\EMSSDemo\\config\\PTNR\\PTNRCitic.cer";
    /** https私钥库*/
    public static final String KEYSTORE_PATH = "F:\\居间接入demo - 副本\\EMSSDemo\\config\\PTNR\\df_test.keystore";
    /** https信任库*/
    public static final String TRUSTSTORE_PATH = "F:\\居间接入demo - 副本\\EMSSDemo\\config\\PTNR\\df_test.keystore";
    /** 报文头*/
    public static final String XML_HEAD = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
    /** 上传文件路径**/
    public static final String FILE_PATH = ROOTPATH + "/file/";
    //私钥库 密码
    public static final String PASSWORD = "111111";
}