Examples of CruiseControlLogFileFilter


Examples of net.sourceforge.cruisecontrol.taglib.CruiseControlLogFileFilter

    public String getFileName() {
        return fileName;
    }

    public static BuildInfoSummary loadFromDir(File logDir) throws CruiseControlWebAppException {
        String [] logFileNames = logDir.list(new CruiseControlLogFileFilter());
        if (logFileNames == null) {
            throw new CruiseControlWebAppException("Could not access the directory " + logDir.getAbsolutePath());
        } else if (logFileNames.length == 0) {
            throw new CruiseControlWebAppException("Configuration problem? No logs found in logDir: "
                                             + logDir.getAbsolutePath());
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.