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

org.atteo.moonshine.jetty.security.DigestAuthenticatorConfig Maven / Gradle / Ivy

The newest version!

package org.atteo.moonshine.jetty.security;

import javax.xml.bind.annotation.XmlRootElement;

import org.eclipse.jetty.security.Authenticator;
import org.eclipse.jetty.security.authentication.DigestAuthenticator;

@XmlRootElement(name = "digest-authenticator")
public class DigestAuthenticatorConfig extends AuthenticatorConfig {

	@Override
	public Authenticator getAuthenticator() {
		return new DigestAuthenticator();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy