package at.gv.egiz.eaaf.core.impl.idp.module.test; import java.io.IOException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import at.gv.egiz.eaaf.core.api.IRequest; import at.gv.egiz.eaaf.core.api.idp.auth.services.IProtocolAuthenticationService; import at.gv.egiz.eaaf.core.exceptions.EAAFException; public class DummyProtocolAuthService implements IProtocolAuthenticationService { @Override public void performAuthentication(HttpServletRequest req, HttpServletResponse resp, IRequest pendingReq) throws IOException, EAAFException { // TODO Auto-generated method stub } @Override public void finalizeAuthentication(HttpServletRequest req, HttpServletResponse resp, IRequest pendingReq) throws EAAFException, IOException { // TODO Auto-generated method stub } @Override public void buildProtocolSpecificErrorResponse(Throwable throwable, HttpServletRequest req, HttpServletResponse resp, IRequest pendingReq) throws IOException, EAAFException { // TODO Auto-generated method stub } @Override public void handleErrorNoRedirect(Throwable throwable, HttpServletRequest req, HttpServletResponse resp, boolean writeExceptionToStatisticLog) throws IOException, EAAFException { // TODO Auto-generated method stub } }