Modifier and Type | Field and Description |
---|---|
static io.vertx.lang.rx.TypeArg<MetaDataService> |
__TYPE_ARG |
Constructor and Description |
---|
MetaDataService(MetaDataService delegate) |
MetaDataService(Object delegate) |
Modifier and Type | Method and Description |
---|---|
MetaDataService |
addStatement(JsonObject statement)
Manually feed a Meta Data Statement to the service.
|
boolean |
equals(Object o) |
MetaDataService |
fetchTOC()
Fetches the FIDO2 MDS3 TOC and process the entries to the metadata store.
|
MetaDataService |
fetchTOC(Handler<AsyncResult<Boolean>> handler)
Fetches the FIDO2 MDS3 TOC and process the entries to the metadata store.
|
MetaDataService |
fetchTOC(String url)
Fetches the FIDO2 TOC for the given URL and process the entries to the metadata store.
|
MetaDataService |
fetchTOC(String url,
Handler<AsyncResult<Boolean>> handler)
Fetches the FIDO2 TOC for the given URL and process the entries to the metadata store.
|
MetaDataService |
flush()
Clears all loaded statements, both from the TOC and manually inserted.
|
MetaDataService |
getDelegate() |
int |
hashCode() |
static MetaDataService |
newInstance(MetaDataService arg) |
Single<Boolean> |
rxFetchTOC()
Fetches the FIDO2 MDS3 TOC and process the entries to the metadata store.
|
Single<Boolean> |
rxFetchTOC(String url)
Fetches the FIDO2 TOC for the given URL and process the entries to the metadata store.
|
String |
toString() |
JsonObject |
verify(Authenticator authenticator)
Verify the metadata for a given authenticator.
|
public static final io.vertx.lang.rx.TypeArg<MetaDataService> __TYPE_ARG
public MetaDataService(MetaDataService delegate)
public MetaDataService(Object delegate)
public MetaDataService getDelegate()
public MetaDataService fetchTOC(String url, Handler<AsyncResult<Boolean>> handler)
true
only if all
entries have been added. false
if they have been processed but at least one was
invalid.
The operation will only fail on network problems.url
- the url to the TOChandler
- the async handler to process the responsepublic MetaDataService fetchTOC(String url)
true
only if all
entries have been added. false
if they have been processed but at least one was
invalid.
The operation will only fail on network problems.url
- the url to the TOCpublic Single<Boolean> rxFetchTOC(String url)
true
only if all
entries have been added. false
if they have been processed but at least one was
invalid.
The operation will only fail on network problems.url
- the url to the TOCpublic MetaDataService fetchTOC(Handler<AsyncResult<Boolean>> handler)
true
only if all
entries have been added. false
if they have been processed but at least one was
invalid.
The operation will only fail on network problems.handler
- the async handler to process the responsepublic MetaDataService fetchTOC()
true
only if all
entries have been added. false
if they have been processed but at least one was
invalid.
The operation will only fail on network problems.public Single<Boolean> rxFetchTOC()
true
only if all
entries have been added. false
if they have been processed but at least one was
invalid.
The operation will only fail on network problems.public MetaDataService addStatement(JsonObject statement)
statement
- the json statementpublic MetaDataService flush()
public JsonObject verify(Authenticator authenticator)
null
.
When a statement is found, the statement will be used to verify the certificate chain. A failure during this
verification will throw a RuntimeException
.authenticator
- authenticator to verifynull
.public static MetaDataService newInstance(MetaDataService arg)
Copyright © 2023 Eclipse. All rights reserved.