Class HttpAuthenticationScheme
- java.lang.Object
-
- net.officefloor.web.security.scheme.HttpAuthenticationScheme
-
public class HttpAuthenticationScheme extends java.lang.Object
Wraps theHttpRequest
to obtain the HTTP authentication scheme information.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAuthentiationScheme()
Obtains the HTTP authentication scheme.static HttpAuthenticationScheme
getHttpAuthenticationScheme(HttpRequest request)
java.lang.String
getParameters()
Obtains the parameters.
-
-
-
Method Detail
-
getHttpAuthenticationScheme
public static HttpAuthenticationScheme getHttpAuthenticationScheme(HttpRequest request)
- Parameters:
request
-HttpRequest
.- Returns:
HttpAuthenticationScheme
ornull
if not available onHttpRequest
.
-
getAuthentiationScheme
public java.lang.String getAuthentiationScheme()
Obtains the HTTP authentication scheme.- Returns:
- HTTP authentication scheme.
-
getParameters
public java.lang.String getParameters()
Obtains the parameters.- Returns:
- Parameters or
null
if no parameters.
-
-