SessionHAPropertiesViewBean.java revision 94ab7a4a8fa00e44d9fe93df2c2a77c134a8e31c
/**
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2007 Sun Microsystems Inc. All Rights Reserved
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* https://opensso.dev.java.net/public/CDDLv1.0.html or
* opensso/legal/CDDLv1.0.txt
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at opensso/legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* $Id: SessionHAPropertiesViewBean.java,v 1.2 2008/06/25 05:43:12 qcheng Exp $
*
*/
package com.sun.identity.console.session;
import com.iplanet.dpro.session.service.AMSessionRepository;
import com.iplanet.jato.model.ModelControlException;
import com.iplanet.jato.view.View;
import com.iplanet.jato.view.event.DisplayEvent;
import com.iplanet.jato.view.html.TextField;
import com.iplanet.jato.view.html.StaticTextField;
import com.sun.identity.shared.Constants;
import com.sun.identity.shared.configuration.SystemPropertiesManager;
import com.sun.web.ui.model.CCPageTitleModel;
import com.sun.web.ui.view.html.CCStaticTextField;
import com.sun.web.ui.view.pagetitle.CCPageTitle;
import com.sun.identity.console.session.model.SMProfileModel;
public class SessionHAPropertiesViewBean
extends SessionHAPropertiesBase {
public static final String DEFAULT_DISPLAY_URL =
"/console/session/SessionHAProperties.jsp";
private boolean initialized;
/**
* Creates a authentication domains view bean.
*/
public SessionHAPropertiesViewBean() {
super(SESSION_HA_PROPERTIES);
setDefaultDisplayURL(DEFAULT_DISPLAY_URL);
}
protected void initialize() {
if (!initialized) {
String sessionAttribute = (String) getPageSessionAttribute(SESSION_HA_PROPERTIES);
if (sessionAttribute != null) {
initialized = true;
createPageTitleModel();
registerChildren();
super.initialize();
}
}
super.registerChildren();
}
protected void registerChildren() {
if (ptModel != null) {
ptModel.registerChildren(this);
}
// Labels
registerChild(AMSessionRepository.IS_SFO_ENABLED+".LABEL",TextField.class);
registerChild(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_TYPE+".LABEL",TextField.class);
registerChild(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_ROOT_DN+".LABEL",TextField.class);
registerChild(AMSessionRepository.REPOSITORY_CLASS_PROPERTY+".LABEL",TextField.class);
registerChild(Constants.AM_SESSION_FAILOVER_USE_REMOTE_SAVE_METHOD+".LABEL",TextField.class);
registerChild(Constants.AM_SESSION_FAILOVER_USE_INTERNAL_REQUEST_ROUTING+".LABEL",TextField.class);
registerChild(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_TIMEOUT+".LABEL",TextField.class);
registerChild(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_PERIOD+".LABEL",TextField.class);
// Read-Only Fields
registerChild(AMSessionRepository.IS_SFO_ENABLED,StaticTextField.class);
registerChild(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_TYPE,StaticTextField.class);
registerChild(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_ROOT_DN,StaticTextField.class);
registerChild(AMSessionRepository.REPOSITORY_CLASS_PROPERTY,StaticTextField.class);
registerChild(Constants.AM_SESSION_FAILOVER_USE_REMOTE_SAVE_METHOD,StaticTextField.class);
registerChild(Constants.AM_SESSION_FAILOVER_USE_INTERNAL_REQUEST_ROUTING,StaticTextField.class);
registerChild(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_TIMEOUT,StaticTextField.class);
registerChild(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_PERIOD,StaticTextField.class);
}
protected View createChild(String name) {
View view = null;
if (ptModel == null) {
createPageTitleModel();
}
if (name.equals(PAGETITLE)) {
view = new CCPageTitle(this, ptModel, name);
}
else if (name.equals(AMSessionRepository.IS_SFO_ENABLED+".LABEL")) {
view = new CCStaticTextField(this,name,AMSessionRepository.IS_SFO_ENABLED);
}
else if (name.equals(AMSessionRepository.IS_SFO_ENABLED)) {
view = new CCStaticTextField(
this,name,SystemPropertiesManager.get(AMSessionRepository.IS_SFO_ENABLED, "false"));
}
else if (name.equals(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_TYPE+".LABEL")) {
view = new CCStaticTextField(this,name,AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_TYPE);
}
else if (name.equals(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_TYPE)) {
view = new CCStaticTextField(
this,name,SystemPropertiesManager.get(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_TYPE,
"None"));
}
else if (name.equals(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_ROOT_DN+".LABEL")) {
view = new CCStaticTextField(this,name,AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_ROOT_DN);
}
else if (name.equals(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_ROOT_DN)) {
view = new CCStaticTextField(
this,name,SystemPropertiesManager.get(AMSessionRepository.SYS_PROPERTY_SESSION_HA_REPOSITORY_ROOT_DN,
""));
}
else if (name.equals(AMSessionRepository.REPOSITORY_CLASS_PROPERTY+".LABEL")) {
view = new CCStaticTextField(this,name,AMSessionRepository.REPOSITORY_CLASS_PROPERTY);
}
else if (name.equals(AMSessionRepository.REPOSITORY_CLASS_PROPERTY)) {
view = new CCStaticTextField(
this,name,SystemPropertiesManager.get(AMSessionRepository.REPOSITORY_CLASS_PROPERTY, ""));
}
else if (name.equals(Constants.AM_SESSION_FAILOVER_USE_REMOTE_SAVE_METHOD+".LABEL")) {
view = new CCStaticTextField(this,name,Constants.AM_SESSION_FAILOVER_USE_REMOTE_SAVE_METHOD);
}
else if (name.equals(Constants.AM_SESSION_FAILOVER_USE_REMOTE_SAVE_METHOD)) {
view = new CCStaticTextField(
this,name,SystemPropertiesManager.get(Constants.AM_SESSION_FAILOVER_USE_REMOTE_SAVE_METHOD, ""));
}
else if (name.equals(Constants.AM_SESSION_FAILOVER_USE_INTERNAL_REQUEST_ROUTING+".LABEL")) {
view = new CCStaticTextField(this,name,Constants.AM_SESSION_FAILOVER_USE_INTERNAL_REQUEST_ROUTING);
}
else if (name.equals(Constants.AM_SESSION_FAILOVER_USE_INTERNAL_REQUEST_ROUTING)) {
view = new CCStaticTextField(
this,name,SystemPropertiesManager.get(Constants.AM_SESSION_FAILOVER_USE_INTERNAL_REQUEST_ROUTING, ""));
}
else if (name.equals(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_TIMEOUT+".LABEL")) {
view = new CCStaticTextField(this,name,Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_TIMEOUT);
}
else if (name.equals(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_TIMEOUT)) {
view = new CCStaticTextField(
this,name,SystemPropertiesManager.get(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_TIMEOUT, ""));
}
else if (name.equals(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_PERIOD+".LABEL")) {
view = new CCStaticTextField(this,name,Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_PERIOD);
}
else if (name.equals(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_PERIOD)) {
view = new CCStaticTextField(
this,name,SystemPropertiesManager.get(Constants.AM_SESSION_FAILOVER_CLUSTER_STATE_CHECK_PERIOD, ""));
}
else if ((ptModel != null) && ptModel.isChildSupported(name)) {
view = ptModel.createChild(this, name);
} else {
view = super.createChild(name);
}
return view;
}
public void beginDisplay(DisplayEvent event)
throws ModelControlException {
super.beginDisplay(event);
SMProfileModel model = (SMProfileModel) getModel();
if (model != null) {
// Set our Sub-Tabs and current position, relative to one.
addSessionsTab(model, 2);
}
}
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(
getClass().getClassLoader().getResourceAsStream(
"com/sun/identity/console/simplePageTitle.xml"));
}
}