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

org.infinispan.cli.completers.EncryptionCompleter Maven / Gradle / Ivy

package org.infinispan.cli.completers;

/**
 * @author Tristan Tarrant <[email protected]>
 * @since 13.0
 **/
public class EncryptionCompleter extends EnumCompleter {

   public enum Encryption {
      None,
      Secret,
      Service;
   }

   public EncryptionCompleter() {
      super(Encryption.class);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy