com.breuninger.boot.mongo.jobs.JobStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-breuninger-mongo Show documentation
Show all versions of spring-boot-starter-breuninger-mongo Show documentation
spring-boot-starter-breuninger-mongo
package com.breuninger.boot.mongo.jobs;
enum JobStructure {
ID("_id"), STARTED("started"), STOPPED("stopped"), JOB_TYPE("type"), STATUS("status"), MESSAGES("messages"), MSG_TS(
"ts"), MSG_TEXT("msg"), MSG_LEVEL("level"), HOSTNAME("hostname"), LAST_UPDATED("lastUpdated");
private final String key;
JobStructure(final String key) {
this.key = key;
}
public String key() {
return key;
}
@Override
public String toString() {
return key;
}
}