All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softicar.platform.common.core.java.code.validator.IJavaCodeValidator Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.core.java.code.validator;

import com.softicar.platform.common.core.java.code.validation.JavaCodeValidationEnvironment;

/**
 * Interface for Java code validators.
 * 

* To activate a class for automatic execution, it must be annotated with * {@link JavaCodeValidator}. * * @author Oliver Richers */ public interface IJavaCodeValidator { /** * Executes this validator. * * @param environment * the validation environment, providing configuration and * context to the {@link IJavaCodeValidator} (never null) */ void validate(JavaCodeValidationEnvironment environment); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy