Uses of Interface
net.shibboleth.idp.attribute.resolver.DataConnector
-
Packages that use DataConnector Package Description net.shibboleth.idp.attribute.resolver A system which is capable of retrieving a collection ofIdPAttributes from a variety of locations, transform them, and associate a set of protocol-specific encoders to them.net.shibboleth.idp.attribute.resolver.context The context to do with Attribute Resolution.net.shibboleth.idp.attribute.resolver.dc.http.impl ADataConnectorimplementation that reads data from an HTTP web service.net.shibboleth.idp.attribute.resolver.dc.impl Common functionality used by data connectors.net.shibboleth.idp.attribute.resolver.dc.ldap.impl ADataConnectorimplementation that reads data from an LDAP.net.shibboleth.idp.attribute.resolver.dc.rdbms.impl ADataConnectorimplementation that reads data from a relational database.net.shibboleth.idp.attribute.resolver.dc.storage.impl Implementation of StorageService-backed data connector.net.shibboleth.idp.attribute.resolver.impl Implementations of core resolver functionality. -
-
Uses of DataConnector in net.shibboleth.idp.attribute.resolver
Classes in net.shibboleth.idp.attribute.resolver that implement DataConnector Modifier and Type Class Description classAbstractDataConnectorBase class for data connector resolver plugins.classResolvedDataConnectorA proxy which wraps a resolved data connector and always returns the same attributes.Fields in net.shibboleth.idp.attribute.resolver declared as DataConnector Modifier and Type Field Description private DataConnectorResolvedDataConnector. resolvedConnectorThe data connector that was resolved to produce the attributes.Methods in net.shibboleth.idp.attribute.resolver that return DataConnector Modifier and Type Method Description DataConnectorResolvedDataConnector. getResolvedConnector()Gets the wrapped data connector that was resolved.Constructors in net.shibboleth.idp.attribute.resolver with parameters of type DataConnector Constructor Description ResolvedDataConnector(DataConnector connector, Map<String,IdPAttribute> attributes)Constructor. -
Uses of DataConnector in net.shibboleth.idp.attribute.resolver.context
Methods in net.shibboleth.idp.attribute.resolver.context with parameters of type DataConnector Modifier and Type Method Description voidAttributeResolverWorkContext. recordDataConnectorResolution(DataConnector connector, Map<String,IdPAttribute> attributes)Records the results of an data connector resolution.voidAttributeResolverWorkContext. recordFailoverResolution(DataConnector failedConnector, DataConnector failoverConnector)Transfer the attributes from a failover data connector to a failed one. -
Uses of DataConnector in net.shibboleth.idp.attribute.resolver.dc.http.impl
Classes in net.shibboleth.idp.attribute.resolver.dc.http.impl that implement DataConnector Modifier and Type Class Description classHTTPDataConnectorThis class implements aDataConnectorthat obtains data from an HTTP service. -
Uses of DataConnector in net.shibboleth.idp.attribute.resolver.dc.impl
Classes in net.shibboleth.idp.attribute.resolver.dc.impl that implement DataConnector Modifier and Type Class Description classAbstractSearchDataConnector<T1 extends ExecutableSearch,T2 extends MappingStrategy<?>>ADataConnectorcontaining functionality common to data connectors that retrieve attribute data by searching a data source.classPairwiseIdDataConnectorADataConnectorthat generates pairwise IDs that depend on a seedIdPAttribute.classScriptedDataConnectorA Data Connector which populates a series of attributes from a providedProfileRequestContext.classStaticDataConnectorADataConnectorthat just returns a static collection of attributes.classSubjectDataConnectorADataConnectorthat extracts allIdPAttributePrincipalobjects from theSubjectobjects associated with the request. -
Uses of DataConnector in net.shibboleth.idp.attribute.resolver.dc.ldap.impl
Classes in net.shibboleth.idp.attribute.resolver.dc.ldap.impl that implement DataConnector Modifier and Type Class Description classLDAPDataConnectorADataConnectorthat queries an LDAP in order to retrieve attribute data. -
Uses of DataConnector in net.shibboleth.idp.attribute.resolver.dc.rdbms.impl
Classes in net.shibboleth.idp.attribute.resolver.dc.rdbms.impl that implement DataConnector Modifier and Type Class Description classRDBMSDataConnectorADataConnectorthat queries a relation database in order to retrieve attribute data. -
Uses of DataConnector in net.shibboleth.idp.attribute.resolver.dc.storage.impl
Classes in net.shibboleth.idp.attribute.resolver.dc.storage.impl that implement DataConnector Modifier and Type Class Description classStorageServiceDataConnectorThis class implements aDataConnectorthat obtains data from aStorageService. -
Uses of DataConnector in net.shibboleth.idp.attribute.resolver.impl
Fields in net.shibboleth.idp.attribute.resolver.impl with type parameters of type DataConnector Modifier and Type Field Description private Map<String,DataConnector>AttributeResolverImpl. dataConnectorsData connectors defined for this resolver.Methods in net.shibboleth.idp.attribute.resolver.impl that return types with arguments of type DataConnector Modifier and Type Method Description Map<String,DataConnector>AttributeResolverImpl. getDataConnectors()Gets the unmodifiable collection of data connectors for this resolver.Method parameters in net.shibboleth.idp.attribute.resolver.impl with type arguments of type DataConnector Modifier and Type Method Description voidAttributeResolverImpl. setDataConnectors(Collection<DataConnector> connectors)Sets the data connectors for this resolver.
-