|
From: <bob...@us...> - 2003-09-09 04:06:28
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler
In directory sc8-pr-cvs1:/tmp/cvs-serv13696/src/hk/hku/cecid/phoenix/message/handler
Modified Files:
Constants.java
Log Message:
add settings for SSL Server authentication.
However, the SSL Server authentication is not implemented yet.
Index: Constants.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler/Constants.java,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** Constants.java 31 Jul 2003 05:58:54 -0000 1.30
--- Constants.java 9 Sep 2003 04:06:18 -0000 1.31
***************
*** 181,185 ****
! // Settings for keystore
/**
--- 181,185 ----
! // Settings for keystore on Digital Signature
/**
***************
*** 289,292 ****
--- 289,323 ----
public static final String PROPERTY_DATABASE_MAXIMUM_IDLE =
"MSH/Persistent/Database/MaximumIdle";
+
+
+ // Settings for SSL
+
+ /**
+ Path to access the classname of customized Hostname verifier for
+ the SSL connection
+ */
+ public static final String PROPERTY_SSL_HOSTNAME_VERIFIER =
+ "MSH/SSL/HostnameVerifier";
+
+ /**
+ Path to access the path of the keystore for the trust certificates on
+ SSL Server Authentication
+ */
+ public static final String PROPERTY_SSL_TRUST_KEY_STORE_PATH =
+ "MSH/SSL/TrustedAnchor/KeyStore/Path";
+
+ /**
+ Path to access the file of the keystore for the trust certificates on
+ SSL Server Authentication.
+ */
+ public static final String PROPERTY_SSL_TRUST_KEY_STORE_FILE =
+ "MSH/SSL/TrustedAnchor/KeyStore/File";
+
+ /**
+ Path to access the password of the keystore for the trust certificates on
+ SSL Server Authentication.
+ */
+ public static final String PROPERTY_SSL_TRUST_KEY_STORE_PASSWORD =
+ "MSH/SSL/TrustedAnchor/KeyStore/Password";
|