All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.apicatalog.did.DidResolver Maven / Gradle / Ivy

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