* return null if not defined or other problem
* 7.0 xpath was "/server/web-container/session-config/session-manager/manager-properties";
*/
public ManagerProperties getInstanceSessionManagerManagerProperties() {
SessionManager smBean = this.getInstanceSessionManager();
if(smBean == null) {
return null;
}
return smBean.getManagerProperties();
}