io.undertow.httpcore.ClientAuth Maven / Gradle / Ivy
The newest version!
package io.undertow.httpcore;
public enum ClientAuth {
/**
* No client authentication is requested or required.
*/
NONE,
/**
* Accept authentication if presented by client. If this option is set and the client chooses
* not to provide authentication information about itself, the negotiations will continue.
*/
REQUEST,
/**
* Require client to present authentication, if not presented then negotiations will be declined.
*/
REQUIRED
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy