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

co.buybuddy.networking.authentication.persistence.ContextPassphraseRepository Maven / Gradle / Ivy

The newest version!
package co.buybuddy.networking.authentication.persistence;

import co.buybuddy.networking.authentication.artifacts.concrete.Passphrase;

import java.io.IOException;

public interface ContextPassphraseRepository {
    public Passphrase retrieve() throws IOException;
    public void store(Passphrase passphrase) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy