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

de.mhus.cherry.vault.client.example.SearchSecrets Maven / Gradle / Ivy

package de.mhus.cherry.vault.client.example;

import java.io.IOException;
import java.util.List;

import de.mhus.cherry.vault.client.SecretEntry;
import de.mhus.cherry.vault.client.VaultClientConnection;
import de.mhus.lib.errors.MException;

public class SearchSecrets {

    public static void main(String[] args) throws IOException, MException {
        VaultClientConnection con = new VaultClientConnection("http://localhost:8181", "admin", "123");
        List list = con.search("test", "alf");
        for (SecretEntry item : list)
            System.out.println(item);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy