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

com.yammer.dropwizard.authenticator.LdapCanAuthenticate Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.yammer.dropwizard.authenticator;

import io.dropwizard.auth.AuthenticationException;
import io.dropwizard.auth.basic.BasicCredentials;

public class LdapCanAuthenticate extends LdapAuthenticator {
    public LdapCanAuthenticate(LdapConfiguration configuration) {
        super(configuration);
    }

    @Override
    public boolean authenticate(BasicCredentials credentials) throws AuthenticationException {
        return canAuthenticate();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy