nl.vpro.nep.domain.ItemizerStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-nep Show documentation
Show all versions of media-nep Show documentation
Support for the several APIs of NEP that POMS is integrating with
package nl.vpro.nep.domain;
import lombok.Getter;
import nl.vpro.i18n.Displayable;
/**
* @author Michiel Meeuwissen
* @since 5.24
*/
@Getter
public enum ItemizerStatus implements Displayable {
COMPLETED(true, "Klaar"),
RUNNING(false, "Bezig"),
QUEUED(false, "Gequeued"),
STARTED(false, "Gestart"),
RETRY(false, "Opnieuw proberen"),
UNKNOWN(true, "Onbekend"),
ERROR(true, "Fout"),
CANCELLED(true, "Afgebroken");
private final boolean endStatus;
private final String displayName;
ItemizerStatus(boolean endStatus, String displayName) {
this.endStatus = endStatus;
this.displayName = displayName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy