/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.api.logging; import at.gv.egiz.eaaf.core.api.IRequest; import at.gv.egiz.eaaf.core.api.idp.IAuthData; public interface IStatisticLogger { public void logSuccessOperation(IRequest protocolRequest, IAuthData authData, boolean isSSOSession); public void logErrorOperation(Throwable throwable); public void logErrorOperation(Throwable throwable, IRequest errorRequest); public void internalTesting() throws Exception; }