Class Mount

  • All Implemented Interfaces:
    java.io.Serializable

    public class Mount
    extends java.lang.Object
    implements java.io.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:
    Serialized Form
    • Constructor Detail

      • Mount

        public Mount()
    • Method Detail

      • description

        public Mount description​(java.lang.String description)
      • local

        public Mount local​(java.lang.Boolean local)
      • sealWrap

        public Mount sealWrap​(java.lang.Boolean sealWrap)
      • getDescription

        public java.lang.String getDescription()
      • getLocal

        public java.lang.Boolean getLocal()
      • getSealWrap

        public java.lang.Boolean getSealWrap()