usr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/RightsSettings.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) 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 import com.oracle.solaris.vp.util.misc.property.*;
       
    31 
       
    32 /**
       
    33  * Implements Advanced Settings for Rights profiles
       
    34  */
       
    35 public class RightsSettings extends AdvancedSettings {
       
    36 
       
    37     private static final String NAME =
       
    38     	Finder.getString("usermgr.advanced.rights");
       
    39     private static final Icon ICON = Finder.getIcon(
       
    40 	"images/rights-24.png");
       
    41 
       
    42     private UserMgrPanelDescriptor panelDesc = null;
       
    43     private UserManagedObject userObj = null;
       
    44     private RightsPanel panel = null;
       
    45 
       
    46     public RightsSettings() {
       
    47 	super(NAME, ICON);
       
    48     }
       
    49 
       
    50     public void setUser(UserManagedObject userObj) {
       
    51 	if (panel == null) {
       
    52 		panel = new RightsPanel(panelDesc, userObj);
       
    53 	}
       
    54 	panel.setUser(userObj);
       
    55 	getProperty().update(userObj.getRights(), false);
       
    56     }
       
    57 
       
    58     public void updateUser() {
       
    59 	userObj = panel.updateUser();
       
    60 	getProperty().update(userObj.getRights(), false);
       
    61     }
       
    62 
       
    63     public boolean isChanged() {
       
    64         if (userObj != null) {
       
    65 	    return (userObj.getRightsProperty().isChanged());
       
    66 	} else {
       
    67 	    return false;
       
    68 	}
       
    69     }
       
    70 
       
    71     public void init(UserMgrPanelDescriptor panelDesc) {
       
    72 	this.panelDesc = panelDesc;
       
    73     }
       
    74 
       
    75     public JPanel getPanel() {
       
    76     	return panel;
       
    77     }
       
    78 }