blob: e3068f75ecd0b0a51ab62b90a43aaf37cca105c9 [file] [log] [blame]
package de.ids_mannheim.korap.constant;
import org.apache.commons.lang.WordUtils;
/**
* Lists possible authentication schemes used in the Authorization
* header
* of HTTP requests.
*
* @author margaretha
*
*/
public enum AuthenticationScheme {
// standard http
BASIC, BEARER,
// custom
// SESSION, has not been supported yet
@Deprecated
API;
public String displayName () {
return WordUtils.capitalizeFully(name());
}
}