com.exasol.projectkeeper.Validator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of project-keeper-core Show documentation
Show all versions of project-keeper-core Show documentation
Project keeper is a tool that verifies and fixes project setups.
package com.exasol.projectkeeper;
import java.util.List;
import com.exasol.projectkeeper.validators.finding.ValidationFinding;
/**
* Interface for project validators.
*/
// [impl->dsn~validators~1]
public interface Validator {
/**
* Validate the current project.
*
* @return list of findings
*/
public List validate();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy