Package | Description |
---|---|
org.springframework.vault.authentication |
Support for authentication and session management.
|
Modifier and Type | Method and Description |
---|---|
static <T> AuthenticationSteps.Node<T> |
AuthenticationSteps.fromHttpRequest(AuthenticationSteps.HttpRequest<T> request)
Start flow composition from a
AuthenticationSteps.HttpRequest . |
static <T> AuthenticationSteps.Node<T> |
AuthenticationSteps.fromSupplier(Supplier<T> supplier)
Start flow composition from a
Supplier . |
<R> AuthenticationSteps.Node<R> |
AuthenticationSteps.Node.map(Function<? super T,? extends R> mappingFunction)
Transform the state object into a different object.
|
AuthenticationSteps.Node<T> |
AuthenticationSteps.Node.onNext(Consumer<? super T> consumerFunction)
Callback with the current state object.
|
<R> AuthenticationSteps.Node<R> |
AuthenticationSteps.Node.request(AuthenticationSteps.HttpRequest<R> request)
Request data using a
AuthenticationSteps.HttpRequest . |
<R> AuthenticationSteps.Node<AuthenticationSteps.Pair<T,R>> |
AuthenticationSteps.Node.zipWith(AuthenticationSteps.Node<? extends R> other)
Combine the result from this
AuthenticationSteps.Node and another into a AuthenticationSteps.Pair . |
Modifier and Type | Method and Description |
---|---|
<R> AuthenticationSteps.Node<AuthenticationSteps.Pair<T,R>> |
AuthenticationSteps.Node.zipWith(AuthenticationSteps.Node<? extends R> other)
Combine the result from this
AuthenticationSteps.Node and another into a AuthenticationSteps.Pair . |
Copyright © 2016–2020 Pivotal Software, Inc.. All rights reserved.