package at.gv.egovernment.moa.id.config.auth.data; import java.util.Date; import java.util.List; import at.gv.egiz.eaaf.core.api.IRequest; import at.gv.egiz.eaaf.core.api.idp.slo.SLOInformationInterface; import at.gv.egiz.eaaf.modules.pvp2.sp.exception.AssertionAttributeExtractorExeption; import at.gv.egiz.eaaf.modules.pvp2.sp.impl.utils.AssertionAttributeExtractor; import at.gv.egovernment.moa.id.auth.data.AuthenticationSession; import at.gv.egovernment.moa.id.auth.data.AuthenticationSessionExtensions; import at.gv.egovernment.moa.id.auth.exception.AuthenticationException; import at.gv.egovernment.moa.id.auth.exception.BuildException; import at.gv.egovernment.moa.id.commons.api.data.IAuthenticationSession; import at.gv.egovernment.moa.id.commons.db.dao.session.AuthenticatedSessionStore; import at.gv.egovernment.moa.id.commons.db.dao.session.InterfederationSessionStore; import at.gv.egovernment.moa.id.commons.db.dao.session.OASessionStore; import at.gv.egovernment.moa.id.commons.db.dao.session.OldSSOSessionIDStore; import at.gv.egovernment.moa.id.commons.db.ex.MOADatabaseException; import at.gv.egovernment.moa.id.storage.IAuthenticationSessionStoreage; public class DummyAuthStorage implements IAuthenticationSessionStoreage { @Override public AuthenticationSession createInternalSSOSession(IRequest target) throws MOADatabaseException, BuildException { // TODO Auto-generated method stub return null; } @Override public AuthenticationSession getInternalSSOSession(String internalSsoSessionID) throws MOADatabaseException { // TODO Auto-generated method stub return null; } @Override public AuthenticationSessionExtensions getAuthenticationSessionExtensions(String internalSsoSessionID) throws MOADatabaseException { // TODO Auto-generated method stub return null; } @Override public void setAuthenticationSessionExtensions(String internalSsoSessionID, AuthenticationSessionExtensions sessionExtensions) throws MOADatabaseException { // TODO Auto-generated method stub } @Override public void destroyInternalSSOSession(String internalSsoSessionID) throws MOADatabaseException { // TODO Auto-generated method stub } @Override public void setAuthenticated(String internalSsoSessionID, boolean isAuthenticated) { // TODO Auto-generated method stub } @Override public boolean isSSOSession(String sessionID) throws MOADatabaseException { // TODO Auto-generated method stub return false; } @Override public AuthenticatedSessionStore isValidSessionWithSSOID(String SSOId) { // TODO Auto-generated method stub return null; } @Override public void addSSOInformation(String moaSessionID, String SSOSessionID, SLOInformationInterface SLOInfo, IRequest protocolRequest) throws AuthenticationException { // TODO Auto-generated method stub } @Override public OASessionStore searchActiveOASSOSession(IAuthenticationSession moaSession, String oaID, String protocolType) { // TODO Auto-generated method stub return null; } @Override public IAuthenticationSession getSessionWithUserNameID(String nameID) { // TODO Auto-generated method stub return null; } @Override public InterfederationSessionStore searchInterfederatedIDPFORSSOWithMOASession(String sessionID) { // TODO Auto-generated method stub return null; } @Override public InterfederationSessionStore searchInterfederatedIDPFORSSOWithMOASessionIDPID(String sessionID, String idpID) { // TODO Auto-generated method stub return null; } @Override public void addFederatedSessionInformation(IRequest req, String idpEntityID, AssertionAttributeExtractor extractor) throws MOADatabaseException, AssertionAttributeExtractorExeption, BuildException { // TODO Auto-generated method stub } @Override public InterfederationSessionStore searchInterfederatedIDPFORAttributeQueryWithSessionID(String moaSessionID) { // TODO Auto-generated method stub return null; } @Override public boolean removeInterfederetedSession(String entityID, String pedingRequestID) { // TODO Auto-generated method stub return false; } @Override public void clean(Date now, long authDataTimeOutCreated, long authDataTimeOutUpdated) { // TODO Auto-generated method stub } @Override public void markOAWithAttributeQueryUsedFlag(IAuthenticationSession session, String oaurl, String requestedModule) { // TODO Auto-generated method stub } @Override public void deleteIdpInformation(InterfederationSessionStore nextIDPInformation) { // TODO Auto-generated method stub } @Override public void persistIdpInformation(InterfederationSessionStore nextIDPInformation) { // TODO Auto-generated method stub } @Override public OldSSOSessionIDStore checkSSOTokenAlreadyUsed(String ssoId) { // TODO Auto-generated method stub return null; } @Override public String getInternalSSOSessionWithSSOID(String externelSSOId) throws MOADatabaseException { // TODO Auto-generated method stub return null; } @Override public List getAllActiveOAFromMOASession(String ssoSessionId) { // TODO Auto-generated method stub return null; } @Override public List getAllActiveIDPsFromMOASession(String ssoSessionId) { // TODO Auto-generated method stub return null; } @Override public String searchSSOSessionWithNameIDandOAID(String oaID, String userNameID) { // TODO Auto-generated method stub return null; } }