Package com.bluelotussoftware.service.spi

Examples of com.bluelotussoftware.service.spi.Log


        }
        return loggers;
    }

    public Log getFirstAvailableLogger() {
        Log log = null;
        Iterator<Log> it = serviceLoader.iterator();
        while (it.hasNext()) {
            log = it.next();
            break;
        }
View Full Code Here

TOP

Related Classes of com.bluelotussoftware.service.spi.Log

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.