/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
*/
package com.sun.portal.monitoring;
import java.util.Locale;
public interface ResourceBundleWrapper {
public String getResourceBundleBaseName();
public void setResourceBundleBaseName(String rbBaseName);
public Locale getLocale();
public void setLocale(Locale locale);
}
|