01: /*
02: * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.ubt;
06:
07: /**
08: * UBT Log Manager MBean
09: */
10: public interface UBTLogManagerMBean {
11: /**
12: * Reload the ubt configurations and apply it.
13: */
14: public void reloadConfiguration();
15: }
|