blob: 3db6a3e6fac467e5525b35910c0dc83447b99a2e [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
API;
public String displayName () {
return WordUtils.capitalizeFully(name());
}
}