Package net.oauth
Interface OAuthValidator
-
- All Known Implementing Classes:
SimpleOAuthValidator
public interface OAuthValidatorAn algorithm to determine whether a message has a valid signature, a correct version number, a fresh timestamp, etc.- Author:
- Dirk Balfanz, John Kristian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvalidateMessage(OAuthMessage message, OAuthAccessor accessor)Check that the given message from the given accessor is valid.
-
-
-
Method Detail
-
validateMessage
void validateMessage(OAuthMessage message, OAuthAccessor accessor) throws OAuthException, IOException, URISyntaxException
Check that the given message from the given accessor is valid.- Throws:
OAuthException- TODOIOException- TODOURISyntaxExceptionOAuthProblemException- the message is invalid. The implementation should throw exceptions that conform to the OAuth Problem Reporting extension.
-
-