/**
* 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: SCConfigAuthViewBean.java,v 1.3 2008/06/25 05:43:15 qcheng Exp $
*
*/
package com.sun.identity.console.service;
import static com.sun.identity.console.XuiRedirectHelper.getAuthenticationRealm;
import static com.sun.identity.console.XuiRedirectHelper.isXuiAdminConsoleEnabled;
import static com.sun.identity.console.XuiRedirectHelper.redirectToXui;
import com.iplanet.jato.model.ModelControlException;
import com.iplanet.jato.view.event.DisplayEvent;
import com.iplanet.jato.view.event.RequestInvocationEvent;
import com.sun.identity.console.XuiRedirectHelper;
import com.sun.identity.console.service.model.SCConfigModel;
import com.sun.web.ui.model.CCActionTableModel;
import com.sun.web.ui.model.CCPropertySheetModel;
import com.sun.identity.console.base.model.AMAdminConstants;
import java.util.List;
public class SCConfigAuthViewBean extends SCConfigViewBean {
public static final String DEFAULT_DISPLAY_URL =
"/console/service/SCConfigAuth.jsp";
public static final String DEFAULT_VIEW_BEAN =
"com.sun.identity.console.service.SCConfigAuthViewBean";
private static final String XUI_AUTHENTICATION_LOCATION = "configure/authentication";
private static final String SEC_AUTH = SCConfigModel.SEC_AUTH;
private static final String TBL_AUTH = "tblAuth";
private CCActionTableModel tblModelAuth;
public SCConfigAuthViewBean() {
super("SCConfigAuth", DEFAULT_DISPLAY_URL);
}
@Override
protected void beginDisplay(DisplayEvent event, boolean setSelectedTabNode) throws ModelControlException {
if (isXuiAdminConsoleEnabled()) {
String authenticationRealm = getAuthenticationRealm(this);
redirectToXui(getRequestContext().getRequest(), XuiRedirectHelper.GLOBAL_SERVICES, authenticationRealm);
} else {
super.beginDisplay(event, setSelectedTabNode);
}
}
protected void createPropertyModel() {
psModel = new CCPropertySheetModel(
getClass().getClassLoader().getResourceAsStream(
"com/sun/identity/console/propertySCAuthConfig.xml"));
createTableModels();
psModel.setModel(TBL_AUTH, tblModelAuth);
}
protected void createTableModels() {
SCConfigModel model = (SCConfigModel)getModel();
tblModelAuth = new CCActionTableModel(
getClass().getClassLoader().getResourceAsStream(
"com/sun/identity/console/tblSCConfigAuth.xml"));
List svcNames = model.getServiceNames(SEC_AUTH);
populateTableModel(tblModelAuth, svcNames, SEC_AUTH);
}
public void handleTblHrefAuthenticationRequest(RequestInvocationEvent event)
{
setPageSessionAttribute(
AMAdminConstants.SAVE_VB_NAME, DEFAULT_VIEW_BEAN);
String name = (String)getDisplayFieldValue(TBL_HREF_PREFIX + SEC_AUTH);
forwardToProfile(name);
}
public void beginDisplay(DisplayEvent event) throws ModelControlException {
if (isXuiAdminConsoleEnabled()) {
String authenticationRealm = getAuthenticationRealm(this);
redirectToXui(getRequestContext().getRequest(), XUI_AUTHENTICATION_LOCATION, authenticationRealm);
} else {
super.beginDisplay(event);
}
}
}