cn.dreampie.common.plugin.shiro.hasher.Hasher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfinal-dreampie Show documentation
Show all versions of jfinal-dreampie Show documentation
jfinal shiro-freemarker plugins
/**
* 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;
}
}