Package org.eluder.coveralls.maven.plugin.validation.ValidationError

Examples of org.eluder.coveralls.maven.plugin.validation.ValidationError.Level


            return Collections.emptyList();
        }
        if (hasValue(job.getServiceName()) && hasValue(job.getServiceJobId())) {
            return Collections.emptyList();
        }
        Level level = (job.isDryRun() ? Level.WARN : Level.ERROR);
        String message = "Either repository token or service with job id must be defined";
        return Arrays.asList(new ValidationError(level, message));
    }
View Full Code Here

TOP

Related Classes of org.eluder.coveralls.maven.plugin.validation.ValidationError.Level

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.