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

cn.dreampie.common.plugin.shiro.hasher.Hasher Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
/**
 *  2013-1-7 上午11:12:33
 */
package cn.dreampie.common.plugin.shiro.hasher;

/**
 * @author wangrenhui
 */
public enum Hasher {
  DEFAULT("default_hasher");

  private final String value;

  private Hasher(String value) {
    this.value = value;
  }

  public String value() {
    return this.value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy