io.github.luzzu.communications.requests.AssessmentStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of luzzu-communications Show documentation
Show all versions of luzzu-communications Show documentation
This module deals with the RESTful APIs
The newest version!
package io.github.luzzu.communications.requests;
public enum AssessmentStatus {
INPROGRESS {
public String toString() {
return "Assessment In Progress";
}
}, SUCCESSFUL {
public String toString() {
return "Successful Assessment";
}
}, FAILED {
public String toString() {
return "Failed Assessment";
}
}, CANCELLED {
public String toString() {
return "Assessment Aborted by User";
}
}
}