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

com.github.nagyesta.lowkeyvault.service.secret.SecretVaultFake Maven / Gradle / Ivy

There is a newer version: 2.5.81
Show newest version
package com.github.nagyesta.lowkeyvault.service.secret;

import com.github.nagyesta.lowkeyvault.service.common.BaseVaultFake;
import com.github.nagyesta.lowkeyvault.service.secret.id.SecretEntityId;
import com.github.nagyesta.lowkeyvault.service.secret.id.VersionedSecretEntityId;
import com.github.nagyesta.lowkeyvault.service.secret.impl.SecretCreateInput;

public interface SecretVaultFake extends BaseVaultFake {

    VersionedSecretEntityId createSecretVersion(String secretName, SecretCreateInput input);

    VersionedSecretEntityId createSecretVersion(VersionedSecretEntityId entityId, SecretCreateInput input);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy