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

com.github.edgar615.util.spring.validate.ValidateProperty Maven / Gradle / Ivy

There is a newer version: 0.2.11
Show newest version
package com.github.edgar615.util.spring.validate;

import java.util.Map;
import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * 校验类的配置.
 *
 * @author Edgar
 * @create 2018-09-10 16:46
 **/
@ConfigurationProperties(prefix = "validate")
public class ValidateProperty {

  private Map> spec;

  public Map> getSpec() {
    return spec;
  }

  public void setSpec(
      Map> spec) {
    this.spec = spec;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy