Module org.refcodes.web
Package org.refcodes.web
Interface BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder<B extends BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder<B>>
- Type Parameters:
B
- The builder to return in order to be able to apply multiple build operations.
- Enclosing interface:
- BasicAuthCredentialsAccessor
public static interface BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder<B extends BasicAuthCredentialsAccessor.BasicAuthCredentialsBuilder<B>>
Provides a builder method for a
BasicAuthCredentials
property
returning the builder for applying multiple build operations.-
Method Summary
Modifier and TypeMethodDescriptionwithBasicAuthCredentials
(String aUserName, String aSecret) Sets theBasicAuthCredentials
from the user name and the secret for the Basic-Authentication credentials property.withBasicAuthCredentials
(BasicAuthCredentials aBasicAuthCredentials) Sets theBasicAuthCredentials
for the Basic-Authentication credentials property.
-
Method Details
-
withBasicAuthCredentials
Sets theBasicAuthCredentials
for the Basic-Authentication credentials property.- Parameters:
aBasicAuthCredentials
- TheBasicAuthCredentials
to be stored by theBasicAuthCredentials
property.- Returns:
- The builder for applying multiple build operations.
-
withBasicAuthCredentials
Sets theBasicAuthCredentials
from the user name and the secret for the Basic-Authentication credentials property.- Parameters:
aUserName
- The user name to be stored by theBasicAuthCredentials
property.aSecret
- The password to be stored by theBasicAuthCredentials
property.- Returns:
- The builder for applying multiple build operations.
-