io.quarkiverse.embedded.postgresql.EmbeddedPostgreSQLConfig Maven / Gradle / Ivy
package io.quarkiverse.embedded.postgresql;
import java.util.Objects;
import java.util.Optional;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
import io.smallrye.config.ConfigMapping;
import io.smallrye.config.WithDefault;
import io.smallrye.config.WithName;
/**
* Allows configuring the embedded PostgreSQL server.
*/
@ConfigMapping(prefix = "quarkus.embedded.postgresql")
@ConfigRoot(phase = ConfigPhase.BUILD_TIME)
public interface EmbeddedPostgreSQLConfig {
/**
* Directory where persistence information is hold
*/
@WithName("data.dir")
Optional dataDir();
/**
* How long PostgreSQL will have to start before it times out. Value is milliseconds.
*/
@WithName("startup.wait")
Optional startupWait();
/**
* Optionally configurable port for the postgresql server. If not set, 62537 is picked.
*/
Optional port();
/**
* Set string type
*
* @see ...
*/
@WithDefault("unspecified")
String stringType();
static boolean isEqual(EmbeddedPostgreSQLConfig d1, EmbeddedPostgreSQLConfig d2) {
if (!Objects.equals(d1.dataDir(), d2.dataDir())) {
return false;
}
if (!Objects.equals(d1.startupWait(), d2.startupWait())) {
return false;
}
if (!Objects.equals(d1.port(), d2.port())) {
return false;
}
if (!Objects.equals(d1.stringType(), d2.stringType())) {
return false;
}
return true;
}
}