Package org.apache.fulcrum.yaafi.framework.util

Examples of org.apache.fulcrum.yaafi.framework.util.ReadWriteLock


     */
    public void enableLogging(Logger logger)
    {
        Validate.notNull( logger, "logger" );
        this.logger = logger;
        this.readWriteLock = new ReadWriteLock(URN_YAAFI_KERNELLOCK, logger);
    }
View Full Code Here


            if( this.getParentLogger().isDebugEnabled() )
            {
                this.getParentLogger().debug( "Creating a dynamic proxy for " + this.getShorthand() );
            }

            ReadWriteLock readWriteLock = this.getReadWriteLock();

            Object proxyInstance = AvalonInterceptorFactory.create(
                this.getName(),
                this.getShorthand(),
                this.getServiceManager(),
View Full Code Here

TOP

Related Classes of org.apache.fulcrum.yaafi.framework.util.ReadWriteLock

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.