com.github.debugthug.validators.RequestValidator Maven / Gradle / Ivy
package com.github.debugthug.validators;
import com.github.debugthug.exceptions.IncorrectRequestException;
import com.github.debugthug.xo.Envelope;
public interface RequestValidator {
public void validate(Envelope request) throws IncorrectRequestException;
}