use of io.github.tesla.authz.controller.oauth2.validator.AbstractClientDetailsValidator in project tesla by linking12.
the class AbstractAuthorizeHandler method validateFailed.
protected boolean validateFailed() throws OAuthSystemException {
AbstractClientDetailsValidator validator = getValidator();
LOG.debug("Use [{}] validate client: {}", validator, oauthRequest.getClientId());
final OAuthResponse oAuthResponse = validator.validate();
return checkAndResponseValidateFailed(oAuthResponse);
}
use of io.github.tesla.authz.controller.oauth2.validator.AbstractClientDetailsValidator in project tesla by linking12.
the class AbstractOAuthTokenHandler method validateFailed.
protected boolean validateFailed() throws OAuthSystemException {
AbstractClientDetailsValidator validator = getValidator();
LOG.debug("Use [{}] validate client: {}", validator, tokenRequest.getClientId());
final OAuthResponse oAuthResponse = validator.validate();
return checkAndResponseValidateFailed(oAuthResponse);
}
Aggregations