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

io.quarkus.elytron.security.jdbc.AttributeMappingConfig Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkus.elytron.security.jdbc;

import io.quarkus.runtime.annotations.ConfigGroup;
import io.smallrye.config.WithDefault;

/**
 * Configuration information used to populate a {@linkplain org.wildfly.security.auth.realm.jdbc.mapper.AttributeMapper}
 */
@ConfigGroup
public interface AttributeMappingConfig {

    /**
     * The index (1 based numbering) of column to map
     */
    @WithDefault("0")
    int index();

    /**
     * The target attribute name
     */
    String to();

    String toString();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy