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

io.vertx.ext.httpservicefactory.ValidationPolicy Maven / Gradle / Ivy

There is a newer version: 4.5.11
Show newest version
package io.vertx.ext.httpservicefactory;

/**
 * @author Julien Viet
 */
public enum ValidationPolicy {

  /**
   * Never do any check.
   */
  NONE,

  /**
   * Validate the deployment when a signature exists for this deployment: when the signature cannot be verified
   * the deployment fails.
   */
  VERIFY,

  /**
   * Any deployment must be verified to be deployed.
   */
  MANDATORY,

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy