Package com.sun.appserv.management.config

Examples of com.sun.appserv.management.config.ModuleLogLevelsConfig.changeAll()


    public void
  testChangeAll()
  {
    final ModuleLogLevelsConfig  config  = getModuleLogLevelsConfig();
   
    config.changeAll( LogLevelValues.FINE );
    // verify that they were all changed
     Map<String,String>  all  = config.getAllLevels();
    for( final String value : all.values() )
    {
        assert( value.equals( LogLevelValues.FINE ) );
View Full Code Here


    for( final String value : all.values() )
    {
        assert( value.equals( LogLevelValues.FINE ) );
    }
   
    config.changeAll( LogLevelValues.INFO );
    // verify that they were all changed
    all  = config.getAllLevels();
    for( final String value : all.values() )
    {
        assert( value.equals( LogLevelValues.INFO ) );
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.