public interface ConfigurationService
| Modifier and Type | Field and Description |
|---|---|
static String |
CONFIG_CREATE_REPO |
static String |
CONFIG_DELETE |
static String |
CONFIG_ENTRIES |
static String |
CONFIG_FETCH |
static String |
CONFIG_SAVE |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Acknowledgment> |
createRepository(CreateRepositoryRequest request)
Request to create a configuration repository and requires a write level permissions.
|
reactor.core.publisher.Mono<Acknowledgment> |
delete(DeleteRequest request)
delete request requires write level permissions to delete entry from the store.
|
reactor.core.publisher.Flux<FetchResponse> |
entries(FetchRequest request)
Entries request requires read level permissions to list all entries objects from the store.
|
reactor.core.publisher.Mono<FetchResponse> |
fetch(FetchRequest request)
Fetch request requires read level permissions to get entry object from the store.
|
reactor.core.publisher.Mono<Acknowledgment> |
save(SaveRequest request)
Save request requires write level permissions to save (create or update) entry to the store.
|
static final String CONFIG_CREATE_REPO
static final String CONFIG_FETCH
static final String CONFIG_ENTRIES
static final String CONFIG_SAVE
static final String CONFIG_DELETE
reactor.core.publisher.Mono<Acknowledgment> createRepository(CreateRepositoryRequest request)
request - includes the repository and key of the requested object.reactor.core.publisher.Mono<FetchResponse> fetch(FetchRequest request)
request - includes the repository and key of the requested object.reactor.core.publisher.Flux<FetchResponse> entries(FetchRequest request)
request - includes the name of the repository to list.reactor.core.publisher.Mono<Acknowledgment> save(SaveRequest request)
request - includes the name of the repository, key, value to save.reactor.core.publisher.Mono<Acknowledgment> delete(DeleteRequest request)
request - includes the name of the repository, key to delete.Copyright © 2015–2019. All rights reserved.