usr/src/java/vpanels/panel/org/opensolaris/os/vp/panel/common/smf/SmfPropertyGroupInfo.java
author Stephen Talley <stephen.talley@oracle.com>
Wed, 21 Jul 2010 20:26:39 -0400
changeset 545 7a29a25b92e2
parent 301 98464369f109
permissions -rw-r--r--
14830 smf: panel doesn't react well to failed server connection 14831 firewall: firewall panel doesn't react well to failed server connection 16616 connection tracking code is widespread, verbose, and often redundant 16617 PropertyChangeForwarder should use a single path to instantiation 16618 MBeanServerConnection listeners should supply server-side filter 16619 RemoteFileSystemView and friends should be part of panel API 16620 HasTimeZoneMXBean implies TimeZoneMXBean class exists 16621 comment typo in PropertyChangeListeners.java

/*
 * CDDL HEADER START
 *
 * 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 usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */

/*
 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
 */

package org.opensolaris.os.vp.panel.common.smf;

import org.opensolaris.os.scf.common.ScfException;

public interface SmfPropertyGroupInfo extends HasService {
    /**
     * Gets the SMF property group name.
     *
     * @exception   ScfException
     *		    if the name must be retrieved from or created in the SMF
     *		    repository and an error occurs
     */
    String getPropertyGroupName() throws ScfException;
}