Package org.glassfish.pfl.tf.timer.spi
Class ObjectRegistrationManagerNOPImpl
- java.lang.Object
-
- org.glassfish.pfl.tf.timer.spi.ObjectRegistrationManagerNOPImpl
-
- All Implemented Interfaces:
ObjectRegistrationManager
public class ObjectRegistrationManagerNOPImpl extends Object implements ObjectRegistrationManager
- Author:
- Ken Cavanaugh
-
-
Field Summary
-
Fields inherited from interface org.glassfish.pfl.tf.timer.spi.ObjectRegistrationManager
nullImpl
-
-
Constructor Summary
Constructors Constructor Description ObjectRegistrationManagerNOPImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidmanage(Named obj)Register obj at the root of the management tree.voidmanage(Named parent, Named obj)Register obj as an immediate child of parent in the management tree.voidunmanage(Named obj)Remove obj from the management tree.
-
-
-
Method Detail
-
manage
public void manage(Named obj)
Description copied from interface:ObjectRegistrationManagerRegister obj at the root of the management tree.- Specified by:
managein interfaceObjectRegistrationManager- Parameters:
obj- Object to register
-
manage
public void manage(Named parent, Named obj)
Description copied from interface:ObjectRegistrationManagerRegister obj as an immediate child of parent in the management tree.- Specified by:
managein interfaceObjectRegistrationManager- Parameters:
parent- Parent object (already registered)obj- Object to register
-
unmanage
public void unmanage(Named obj)
Description copied from interface:ObjectRegistrationManagerRemove obj from the management tree.- Specified by:
unmanagein interfaceObjectRegistrationManager- Parameters:
obj- Object to be removed from the management tree.
-
-