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

legolas.postgre.interfaces.PostgreSQLEntry Maven / Gradle / Ivy

There is a newer version: 1.0.14
Show newest version
package legolas.postgre.interfaces;

import legolas.config.api.interfaces.Entry;

public enum PostgreSQLEntry implements Entry {
  HOST("postgre.host"),
  PORT("postgre.port"),
  URL("postgre.url"),
  DRIVER("postgre.driver"),
  USERNAME("postgre.username"),
  PASSWORD("postgre.password");

  private final String value;

  PostgreSQLEntry(String value) {
    this.value = value;
  }

  @Override
  public String value() {
    return this.value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy