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";
|
}
|