Uses of Interface
org.wildfly.security.auth.realm.jdbc.ColumnMapper
-
Packages that use ColumnMapper Package Description org.wildfly.security.auth.realm.jdbc Classes related to aSecurityRealm
implementation based on the JDBC (Java Database Connectivity) API.org.wildfly.security.auth.realm.jdbc.mapper Classes related to mapping columns from a database table to internal representations of identity data (eg.: attributes, password and keys, etc). -
-
Uses of ColumnMapper in org.wildfly.security.auth.realm.jdbc
Subinterfaces of ColumnMapper in org.wildfly.security.auth.realm.jdbc Modifier and Type Interface Description interface
KeyMapper
A key mapper is responsible to map data from a column in a table to a specific credential type.Fields in org.wildfly.security.auth.realm.jdbc with type parameters of type ColumnMapper Modifier and Type Field Description private List<ColumnMapper>
QueryConfiguration. columnMappers
private List<ColumnMapper>
QueryBuilder. mappers
Methods in org.wildfly.security.auth.realm.jdbc with type parameters of type ColumnMapper Modifier and Type Method Description (package private) <T extends ColumnMapper>
List<T>QueryConfiguration. getColumnMappers(Class<T> mapperType)
Methods in org.wildfly.security.auth.realm.jdbc that return types with arguments of type ColumnMapper Modifier and Type Method Description (package private) List<ColumnMapper>
QueryConfiguration. getColumnMappers()
Returns allColumnMapper
instances associated with this query.Methods in org.wildfly.security.auth.realm.jdbc with parameters of type ColumnMapper Modifier and Type Method Description QueryBuilder
QueryBuilder. withMapper(ColumnMapper... mapper)
Defines a mapper that will be applied to the query in order to map the returned columns to some internal representation.Constructor parameters in org.wildfly.security.auth.realm.jdbc with type arguments of type ColumnMapper Constructor Description QueryConfiguration(String sql, DataSource dataSource, List<ColumnMapper> columnMappers)
-
Uses of ColumnMapper in org.wildfly.security.auth.realm.jdbc.mapper
Classes in org.wildfly.security.auth.realm.jdbc.mapper that implement ColumnMapper Modifier and Type Class Description class
AttributeMapper
class
PasswordKeyMapper
-