- java.lang.Object
-
- org.refcodes.web.BasicAuthRequest
-
- All Implemented Interfaces:
org.refcodes.mixin.Dumpable,BasicAuthCredentialsAccessor,HttpMethodAccessor,UrlAccessor
public class BasicAuthRequest extends Object implements BasicAuthCredentialsAccessor, HttpMethodAccessor, UrlAccessor, org.refcodes.mixin.Dumpable
Defines aBasicAuthRequestdescribes a Baisc-Auth request as of HTTP. See also "https://en.wikipedia.org/wiki/Basic_access_authentication".
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.web.BasicAuthCredentialsAccessor
BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder<B extends BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder<B>>, BasicAuthCredentialsAccessor.BasicAuthCredentialsMutator, BasicAuthCredentialsAccessor.BasicAuthCredentialsProperty
-
Nested classes/interfaces inherited from interface org.refcodes.web.HttpMethodAccessor
HttpMethodAccessor.HttpMethodBuilder<B extends HttpMethodAccessor.HttpMethodBuilder<B>>, HttpMethodAccessor.HttpMethodMutator, HttpMethodAccessor.HttpMethodProperty
-
Nested classes/interfaces inherited from interface org.refcodes.web.UrlAccessor
UrlAccessor.UrlBuilder, UrlAccessor.UrlMutator, UrlAccessor.UrlProperty
-
-
Constructor Summary
Constructors Constructor Description BasicAuthRequest(HttpMethod aHttpMethod, Url aUrl, BasicAuthCredentials aCredentials)Constructs aBasicAuthRequestinstance with required attributes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BasicAuthCredentialsgetBasicAuthCredentials()Retrieves theBasicAuthCredentialsfrom the Basic-Authentication credentials property (or null if there are none such credentials).HttpMethodgetHttpMethod()Retrieves the HTTP-Method from the HTTP-Method property.UrlgetUrl()
-
-
-
Constructor Detail
-
BasicAuthRequest
public BasicAuthRequest(HttpMethod aHttpMethod, Url aUrl, BasicAuthCredentials aCredentials)
Constructs aBasicAuthRequestinstance with required attributes.- Parameters:
aHttpMethod- TheHttpMethodwith which the request has been sent.aUrl- TheUrlfrom which to take the URL specific data.aCredentials- The credentials retrieved from the request.
-
-
Method Detail
-
getBasicAuthCredentials
public BasicAuthCredentials getBasicAuthCredentials()
Retrieves theBasicAuthCredentialsfrom the Basic-Authentication credentials property (or null if there are none such credentials).- Specified by:
getBasicAuthCredentialsin interfaceBasicAuthCredentialsAccessor- Returns:
- The
BasicAuthCredentialsstored by the basic authentication credentials property (or null if there are none such credentials).
-
getHttpMethod
public HttpMethod getHttpMethod()
Retrieves the HTTP-Method from the HTTP-Method property.- Specified by:
getHttpMethodin interfaceHttpMethodAccessor- Returns:
- The HTTP-Method stored by the HTTP-Method property.
-
getUrl
public Url getUrl()
- Specified by:
getUrlin interfaceUrlAccessor- Returns:
- The Url stored by the
Urlproperty.
-
-