/* * Copyright (c) 2003, 2007, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.management.remote; import javax.management.MBeanServer; /** *
An object of this class implements the MBeanServer interface and
* wraps another object that also implements that interface.
* Typically, an implementation of this interface performs some action
* in some or all methods of the MBeanServer
interface
* before and/or after forwarding the method to the wrapped object.
* Examples include security checking and logging.
mbs
is
* null or if mbs
is identical to this object.
*
* @see #getMBeanServer
*/
public void setMBeanServer(MBeanServer mbs);
}