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

legolas.oracle.interfaces.OracleEntry Maven / Gradle / Ivy

The newest version!
package legolas.oracle.interfaces;

import legolas.config.api.interfaces.Entry;

public enum OracleEntry implements Entry {
  HOST("oracle.host"),
  PORT("oracle.port"),
  URL("oracle.url"),
  DRIVER("oracle.driver"),
  USERNAME("oracle.username"),
  PASSWORD("oracle.password"),
  SID("oracle.sid");

  private final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy