com.github.nagyesta.lowkeyvault.service.secret.SecretVaultFake Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lowkey-vault-app Show documentation
Show all versions of lowkey-vault-app Show documentation
Assembled application of Lowkey Vault.
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);
}