Prepare the project for javadocs
This commit is contained in:
@@ -2,6 +2,8 @@ package fr.xephi.authme.security;
|
||||
|
||||
import org.apache.commons.lang.ObjectUtils.Null;
|
||||
|
||||
/**
|
||||
*/
|
||||
public enum HashAlgorithm {
|
||||
|
||||
MD5(fr.xephi.authme.security.crypts.MD5.class),
|
||||
@@ -35,10 +37,18 @@ public enum HashAlgorithm {
|
||||
|
||||
Class<?> classe;
|
||||
|
||||
/**
|
||||
* Constructor for HashAlgorithm.
|
||||
* @param classe Class<?>
|
||||
*/
|
||||
HashAlgorithm(Class<?> classe) {
|
||||
this.classe = classe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Method getclasse.
|
||||
* @return Class<?>
|
||||
*/
|
||||
public Class<?> getclasse() {
|
||||
return classe;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user