diff --git a/commons/web-common/src/main/java/com/schbrain/common/web/support/authentication/AbstractAuthenticator.java b/commons/web-common/src/main/java/com/schbrain/common/web/support/authentication/AbstractAuthenticator.java index 5132f1b20df91a12f93350ec19cc9d5cec02258c..0ee968454cefd120cbd3d6548ac0b4f5712a5633 100644 --- a/commons/web-common/src/main/java/com/schbrain/common/web/support/authentication/AbstractAuthenticator.java +++ b/commons/web-common/src/main/java/com/schbrain/common/web/support/authentication/AbstractAuthenticator.java @@ -46,9 +46,7 @@ public abstract class AbstractAuthenticator implements Authenticator { return doValidate(authentication, request, response, handler); } - protected boolean doValidate(String authentication, HttpServletRequest request, HttpServletResponse response, HandlerMethod handler) { - return true; - } + protected abstract boolean doValidate(String authentication, HttpServletRequest request, HttpServletResponse response, HandlerMethod handler); @Nullable protected String getAuthentication(HttpServletRequest request) {