java.lang.Object
io.github.jopenlibs.vault.api.sys.mounts.Mount
All Implemented Interfaces:
Serializable

public class Mount extends Object implements Serializable

A container for options returned by mounts endpoints on the Secret Engine backend. This class is meant for use with a builder pattern style. Example usage:


 final Mount options = new Mount()
                             .type(MountType.PKI)
                             .description("Some description about the secret engine");
 
See Also: