org.vfdtech.interfaces.IValidatorUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities-and-generic-tools Show documentation
Show all versions of utilities-and-generic-tools Show documentation
A utilities service with generic tools implementation. Can be
plugged into your java project
package org.vfdtech.interfaces;
import org.vfdtech.exceptions.CustomException;
import java.util.HashMap;
public interface IValidatorUtil {
public HashMap doValidation(T objectToValidate) throws CustomException;
public boolean matchesAUrlPattern(String url);
}