01: /*
02: * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.monitoring;
06:
07: import java.util.Locale;
08:
09: public interface ResourceBundleWrapper {
10: public String getResourceBundleBaseName();
11:
12: public void setResourceBundleBaseName(String rbBaseName);
13:
14: public Locale getLocale();
15:
16: public void setLocale(Locale locale);
17: }
|