FileDocCategorySizeDatePackage
ModuleLogLevelsConfigFactory.javaAPI DocGlassfish v2 API4747Fri May 04 22:23:20 BST 2007com.sun.enterprise.management.config

ModuleLogLevelsConfigFactory

public final class ModuleLogLevelsConfigFactory extends ConfigFactory

Fields Summary
private final com.sun.enterprise.management.support.oldconfig.OldLogServiceMBean
mOldLogServiceMBean
private final Set
LEGAL_OPTIONAL_KEYS
Constructors Summary
public ModuleLogLevelsConfigFactory(ConfigFactoryCallback callbacks, com.sun.enterprise.management.support.oldconfig.OldLogServiceMBean old)

		super( callbacks );
		
		mOldLogServiceMBean	= old;
	
Methods Summary
public javax.management.ObjectNamecreate(java.util.Map optional)

		final Map<String,String>		params			= initParams( optional );

		final ObjectName	amxName	= createChild( params );
		
		return( amxName );
	
protected javax.management.ObjectNamecreateOldChildConfig(java.lang.String oldType, javax.management.AttributeList attrs)

		final ObjectName old = mOldLogServiceMBean.createModuleLogLevels( attrs );
		return old;
	
protected java.util.SetgetLegalOptionalCreateKeys()

	
	     
	
	
		return( LEGAL_OPTIONAL_KEYS );
	
protected voidinternalRemove(javax.management.ObjectName objectName)

		mOldLogServiceMBean.removeModuleLogLevels();