
br.com.jhonsapp.bootstrap.document.model.DocumentStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootstrap-document Show documentation
Show all versions of bootstrap-document Show documentation
A complete architecture for creating and managing documents.
The newest version!
package br.com.jhonsapp.bootstrap.document.model;
/**
* This enum representation of document status.
*
* @author Jhonathan Camacho.
*/
public enum DocumentStatus {
CREATED("Criado"),
ARCHIVED("Arquivado"),
CANCELED("Cancelado");
private String status;
private DocumentStatus(String status) {
this.status = status;
}
public String getStatus() {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy