Package com.sun.appserv.management.config

Examples of com.sun.appserv.management.config.HTTPAccessLogConfig


      //trace( "newVS.getState: " + newVS.getState() );
      // assert newVS.getState().equals("disabled");
     
      assert( newVS.getHTTPAccessLogConfig() == null );
     
      final HTTPAccessLogConfig accessLog  =
        newVS.createHTTPAccessLogConfig( false, "${com.sun.aas.instanceRoot}/logs/access", null);
      assert ( accessLog != null );
      assert ( Util.getObjectName( accessLog ).equals( Util.getObjectName( newVS.getHTTPAccessLogConfig() ) ) );
     
      newVS.removeHTTPAccessLogConfig();
View Full Code Here

TOP

Related Classes of com.sun.appserv.management.config.HTTPAccessLogConfig

Copyright © 2018 www.massapicom. 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.