01: package com.technoetic.xplanner.security;
02:
03: import javax.servlet.http.HttpServletRequest;
04:
05: public interface Authenticator {
06: void authenticate(HttpServletRequest request, String userId,
07: String password) throws AuthenticationException;
08:
09: void logout(HttpServletRequest request, int principalId)
10: throws AuthenticationException;
11: }
|