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

io.quarkus.datasource.runtime.DatabaseKindConverter Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.datasource.runtime;

import org.eclipse.microprofile.config.spi.Converter;

import io.quarkus.datasource.common.runtime.DatabaseKind;

public class DatabaseKindConverter implements Converter {

    @Override
    public String convert(String value) {
        return DatabaseKind.normalize(value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy