Module org.refcodes.web
Package org.refcodes.web
Interface BearerAuthCredentialsAccessor.BearerAuthCredentialsBuilder<B extends BearerAuthCredentialsAccessor.BearerAuthCredentialsBuilder<B>>
-
- Type Parameters:
B
- The builder to return in order to be able to apply multiple build operations.
- Enclosing interface:
- BearerAuthCredentialsAccessor
public static interface BearerAuthCredentialsAccessor.BearerAuthCredentialsBuilder<B extends BearerAuthCredentialsAccessor.BearerAuthCredentialsBuilder<B>>
Provides a builder method for aBearerAuthCredentials
property returning the builder for applying multiple build operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description B
withBearerAuthCredentials(String aBearerAuthCredentials)
Sets theBearerAuthCredentials
from the token for the bearer auth credentials property.B
withBearerAuthCredentials(BearerAuthCredentials aBearerAuthCredentials)
Sets theBearerAuthCredentials
for the bearer auth credentials property.
-
-
-
Method Detail
-
withBearerAuthCredentials
B withBearerAuthCredentials(BearerAuthCredentials aBearerAuthCredentials)
Sets theBearerAuthCredentials
for the bearer auth credentials property.- Parameters:
aBearerAuthCredentials
- TheBearerAuthCredentials
to be stored by theBearerAuthCredentials
property.- Returns:
- The builder for applying multiple build operations.
-
withBearerAuthCredentials
B withBearerAuthCredentials(String aBearerAuthCredentials)
Sets theBearerAuthCredentials
from the token for the bearer auth credentials property.- Parameters:
aBearerAuthCredentials
- The password to be stored by theBearerAuthCredentials
property.- Returns:
- The builder for applying multiple build operations.
-
-