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

io.quarkus.vault.runtime.client.dto.WrapInfo Maven / Gradle / Ivy

The newest version!
package io.quarkus.vault.runtime.client.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

public class WrapInfo implements VaultModel {

    public String token;
    public long ttl;

    @JsonProperty("creation_time")
    public String creationTime;

    @JsonProperty("creation_path")
    public String creationPath;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy