usr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/AuthsSettings.java
changeset 847 a8e124b894b8
equal deleted inserted replaced
846:0a2af4721353 847:a8e124b894b8
       
     1 /*
       
     2  * CDDL HEADER START
       
     3  *
       
     4  * The contents of this file are subject to the terms of the
       
     5  * Common Development and Distribution License (the "License").
       
     6  * You may not use this file except in compliance with the License.
       
     7  *
       
     8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
     9  * or http://www.opensolaris.org/os/licensing.
       
    10  * See the License for the specific language governing permissions
       
    11  * and limitations under the License.
       
    12  *
       
    13  * When distributing Covered Code, include this CDDL HEADER in each
       
    14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    15  * If applicable, add the following below this CDDL HEADER, with the
       
    16  * fields enclosed by brackets "[]" replaced with your own identifying
       
    17  * information: Portions Copyright [yyyy] [name of copyright owner]
       
    18  *
       
    19  * CDDL HEADER END
       
    20  */
       
    21 
       
    22 /*
       
    23  * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
       
    24  */
       
    25 
       
    26 package com.oracle.solaris.vp.panels.usermgr.client.swing;
       
    27 
       
    28 import javax.swing.*;
       
    29 import com.oracle.solaris.vp.util.misc.finder.Finder;
       
    30 
       
    31 
       
    32 /**
       
    33  * Implements Authorization Settings in the Advanced
       
    34  * Settings
       
    35  */
       
    36 public class AuthsSettings extends AdvancedSettings {
       
    37 
       
    38     private static final String NAME =
       
    39     	Finder.getString("usermgr.advanced.auths");
       
    40     private static final Icon ICON = Finder.getIcon(
       
    41 	"images/user-24.png");
       
    42 
       
    43     private UserMgrPanelDescriptor panelDesc = null;
       
    44     private UserManagedObject userObj = null;
       
    45     private AuthsPanel panel = null;
       
    46 
       
    47     public AuthsSettings() {
       
    48 	super(NAME, ICON);
       
    49     }
       
    50 
       
    51     public void setUser(UserManagedObject userObj) {
       
    52 	if (panel == null) {
       
    53 		panel = new AuthsPanel(panelDesc, userObj);
       
    54 	}
       
    55 	panel.setUser(userObj);
       
    56 	getProperty().update(userObj.getAuths(), false);
       
    57     }
       
    58 
       
    59     public void updateUser() {
       
    60 	userObj = panel.updateUser();
       
    61 	getProperty().setValue(userObj.getAuths());
       
    62     }
       
    63 
       
    64     public boolean isChanged() {
       
    65         if (userObj != null) {
       
    66 	    return (userObj.getAuthsProperty().isChanged());
       
    67 	} else {
       
    68 	    return false;
       
    69 	}
       
    70     }
       
    71 
       
    72     public void init(UserMgrPanelDescriptor panelDesc) {
       
    73 	this.panelDesc = panelDesc;
       
    74     }
       
    75 
       
    76     public JPanel getPanel() {
       
    77     	return panel;
       
    78     }
       
    79 }