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

io.apicurio.registry.utils.DtoUtil Maven / Gradle / Ivy

The newest version!
package io.apicurio.registry.utils;

public final class DtoUtil {

    public static String registryAuthPropertyToApp(String propertyName) {
        return propertyName.replace("apicurio.auth.", "app.authn.");
    }

    public static String appAuthPropertyToRegistry(String propertyName) {
        return propertyName.replace("app.authn.", "apicurio.auth.");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy