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

io.quarkiverse.embedded.postgresql.EmbeddedPostgreSQLConfigSource Maven / Gradle / Ivy

package io.quarkiverse.embedded.postgresql;

import java.util.Map;

import io.smallrye.config.common.MapBackedConfigSource;

public class EmbeddedPostgreSQLConfigSource extends MapBackedConfigSource {

    private static final long serialVersionUID = 1L;
    // this is higher than the file system or jar ordinals, but lower than env vars
    // https://github.com/quarkusio/quarkus/pull/14777
    private static final int ORDINAL = 270;

    public EmbeddedPostgreSQLConfigSource(Map propertyMap) {
        super("embedded-postgresql", propertyMap, ORDINAL, false);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy