com.apicatalog.did.DidResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of carbon-did Show documentation
Show all versions of carbon-did Show documentation
Decentralized Identifiers (DIDs) API
The newest version!
package com.apicatalog.did;
import com.apicatalog.did.document.DidDocument;
/**
* Performs {@link Did} resolution by expanding {@link Did} into {@link DidDocument}.
*
* @see DID resolvers
*/
public interface DidResolver {
/**
* Resolves the given {@link Did} into {@link DidDocument}
*
* @param did To resolve
* @return The new {@link DidDocument}
*/
DidDocument resolve(Did did);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy