All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.bund.bva.isyfact.task.security.impl.NoOpAuthenticator Maven / Gradle / Ivy

The newest version!
package de.bund.bva.isyfact.task.security.impl;

import de.bund.bva.isyfact.task.security.Authenticator;

/**
 * Implementierung von {@link Authenticator}, die eine "leere" Authentifizierung durchführt.
 */
public class NoOpAuthenticator implements Authenticator {

    @Override
    public void login() {
        // leer
    }

    @Override
    public void logout() {
        // leer
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy