io.quarkus.vault.runtime.client.dto.VaultRenewSelfBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-vault Show documentation
Show all versions of quarkus-vault Show documentation
Store your credentials securely in HashiCorp Vault
package io.quarkus.vault.runtime.client.dto;
public class VaultRenewSelfBody implements VaultModel {
// eg: 1h
public String increment;
public VaultRenewSelfBody(String increment) {
this.increment = increment;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy