public class TomcatServerXML extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static KeyMaterial |
KEY_MATERIAL
KeyMaterial extracted from Tomcat's conf/server.xml.
|
static java.util.SortedMap |
KEY_MATERIAL_BY_PORT
new Integer( port ) --> KeyMaterial mapping of SSL Certificates found
inside Tomcat's conf/server.xml file.
|
private static LogWrapper |
log |
static TrustMaterial |
TRUST_MATERIAL
TrustMaterial extracted from Tomcat's conf/server.xml.
|
static java.util.SortedMap |
TRUST_MATERIAL_BY_PORT
new Integer( port ) --> TrustMaterial mapping of SSL configuration
found inside Tomcat's conf/server.xml file.
|
Constructor and Description |
---|
TomcatServerXML() |
Modifier and Type | Method and Description |
---|---|
private static void |
loadTomcatConfig(org.w3c.dom.Document d,
java.util.Map keyMap,
java.util.Map trustMap) |
private static final LogWrapper log
public static final KeyMaterial KEY_MATERIAL
public static final TrustMaterial TRUST_MATERIAL
There's a good chance this will be set to TrustMaterial.DEFAULT (which use's the JVM's '$JAVA_HOME/jre/lib/security/cacerts' file).
Note: With SSLServerSockets, TrustMaterial only matters when the incoming client socket (SSLSocket) presents a client certificate.
public static final java.util.SortedMap KEY_MATERIAL_BY_PORT
public static final java.util.SortedMap TRUST_MATERIAL_BY_PORT
Many of these will probably be TrustMaterial.DEFAULT (which uses the JVM's '$JAVA_HOME/jre/lib/security/cacerts' file).
Note: With SSLServerSockets, TrustMaterial only matters when the incoming client socket (SSLSocket) presents a client certificate.
public TomcatServerXML()
private static void loadTomcatConfig(org.w3c.dom.Document d, java.util.Map keyMap, java.util.Map trustMap)