All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.breuninger.boot.mongo.jobs.JobStructure Maven / Gradle / Ivy

There is a newer version: 2.0.5.RELEASE
Show newest version
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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy