// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package org.apache.oltu.oauth2.common.validators; import javax.servlet.http.HttpServletRequest; import org.apache.oltu.oauth2.common.exception.OAuthProblemException; public interface OAuthValidator { public abstract void performAllValidations(HttpServletRequest httpservletrequest) throws OAuthProblemException; public abstract void validateClientAuthenticationCredentials(HttpServletRequest httpservletrequest) throws OAuthProblemException; public abstract void validateContentType(HttpServletRequest httpservletrequest) throws OAuthProblemException; public abstract void validateMethod(HttpServletRequest httpservletrequest) throws OAuthProblemException; public abstract void validateNotAllowedParameters(HttpServletRequest httpservletrequest) throws OAuthProblemException; public abstract void validateOptionalParameters(HttpServletRequest httpservletrequest) throws OAuthProblemException; public abstract void validateRequiredParameters(HttpServletRequest httpservletrequest) throws OAuthProblemException; }