Commit 638b4b94 authored by Grzegorz Pietrusza's avatar Grzegorz Pietrusza

add tasktype

parent 4bf1e33a
......@@ -4,7 +4,17 @@ package core;
* Created by gpietrus on 20.02.2016.
*/
public enum TaskType {
WEB,
CRYPTO,
UNDEFINED
WEB("WEB"),
CRYPTO("CRYPTO"),
UNDEFINED("UNDEFINED");
private final String type;
TaskType(String type) {
this.type = type;
}
public String getType() {
return type;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment