public String getSessionCacheSize() { return sessionCacheSize;}
public void setSessionCacheSize(String s) { sessionCacheSize = s;}
- private String sessionCacheTimeout = "86400";
- public String getSessionCacheTimeout() { return sessionCacheTimeout;}
- public void setSessionCacheTimeout(String s) { sessionCacheTimeout = s;}
+ private String sessionTimeout = "86400";
+ public String getSessionTimeout() { return sessionTimeout;}
+ public void setSessionTimeout(String s) { sessionTimeout = s;}
private String allowUnsafeLegacyRenegotiation = null;
public String getAllowUnsafeLegacyRenegotiation() {
serverSocketFactory.setAttribute(SSL_ATTR_SESSION_CACHE_SIZE,
getSessionCacheSize());
serverSocketFactory.setAttribute(SSL_ATTR_SESSION_TIMEOUT,
- getSessionCacheTimeout());
+ getSessionTimeout());
serverSocketFactory.setAttribute(SSL_ATTR_ALLOW_UNSAFE_RENEG,
getAllowUnsafeLegacyRenegotiation());
}
sessionContext.setSessionCacheSize(
Integer.parseInt(getSessionCacheSize()));
}
- if (getSessionCacheTimeout() != null) {
+ if (getSessionTimeout() != null) {
sessionContext.setSessionTimeout(
- Integer.parseInt(getSessionCacheTimeout()));
+ Integer.parseInt(getSessionTimeout()));
}
}
}