Uses of Interface
net.shibboleth.idp.attribute.IdPAttributeValue
Packages that use IdPAttributeValue
Package
Description
IdPAttributes are protocol-agnostic
units of information about some thing, usually a user.This package contains a filtering engine for a collection of
IdPAttributes.The contexts to do with attribute filtering.
Implementations of core attribute filter functionality.
Implementation of the various policy matchers.
Implementation of the logical attribute matchers.
This is where the attribute matchers that understand SAML live.
Testing utility classes.
A system which is capable of retrieving a collection of
IdPAttributes from a variety of locations, transform them,
and associate a set of protocol-specific encoders to them.Implementations of various
AttributeDefinitions.Interfaces supporting data connectors.
A
DataConnector implementation that
reads data from an HTTP web service.Testing utility classes.
Package for LDAP data connector configuration.
Package for RDBMS data connector configuration.
Implementation of StorageService-backed data connector.
Implementations of core resolver functionality.
Implementations of SAML related
AttributeDefinition
and DataConnector.Base classes for SAML
AttributeTranscoder classes.Implementations of SAML transcoders.
-
Uses of IdPAttributeValue in net.shibboleth.idp.attribute
Classes in net.shibboleth.idp.attribute that implement IdPAttributeValueModifier and TypeClassDescriptionfinal classAbyte[]value for anIdPAttribute.classBase class forIdPAttributevalues that are date/time values.final classAnIdPAttributeValuethat is empty.final classAn attribute value with an associated scope.classBase class forIdPAttributevalues that are strings.final classAXMLObjectAttributeValuevalue for anIdPAttribute.Fields in net.shibboleth.idp.attribute with type parameters of type IdPAttributeValueModifier and TypeFieldDescriptionprivate List<IdPAttributeValue>IdPAttribute.valuesValues for this attribute.Methods in net.shibboleth.idp.attribute that return IdPAttributeValueModifier and TypeMethodDescriptionstatic IdPAttributeValueByteAttributeValue.valueOf(byte[] value) Returns anEmptyAttributeValueorByteAttributeValueas appropriate.static IdPAttributeValueReturns anEmptyAttributeValueorScopedStringAttributeValueas appropriate.static IdPAttributeValueReturns anEmptyAttributeValueorStringAttributeValueas appropriate.Methods in net.shibboleth.idp.attribute that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionIdPAttribute.getValues()Get the unmodifiable ordered collection of values of the attribute.Methods in net.shibboleth.idp.attribute with parameters of type IdPAttributeValueModifier and TypeMethodDescriptiondefault intIdPAttributeValue.compareTo(IdPAttributeValue value) Method parameters in net.shibboleth.idp.attribute with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionvoidIdPAttribute.setValues(List<IdPAttributeValue> newValues) Replaces the existing values for this attribute with the given values. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.filter
Methods in net.shibboleth.idp.attribute.filter that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionMatcher.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) Return thoseIdPAttributeValues which match this rule, or null if the matcher failed.MatcherFromPolicy.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) Return thoseIdPAttributeValues which match this rule, or null if the matcher failed. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.filter.context
Fields in net.shibboleth.idp.attribute.filter.context with type parameters of type IdPAttributeValueModifier and TypeFieldDescriptionprivate final Map<String,Set<IdPAttributeValue>> AttributeFilterWorkContext.deniedValuesValues, for a given attribute, that are not permitted to be released.private final Map<String,Set<IdPAttributeValue>> AttributeFilterWorkContext.permittedValuesValues, for a given attribute, that are permitted to be released.Methods in net.shibboleth.idp.attribute.filter.context that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionAttributeFilterWorkContext.getDeniedAttributeValues()Gets the unmodifiable collection of attribute values, indexed by ID, that are not permitted to be released.AttributeFilterWorkContext.getPermittedIdPAttributeValues()Gets the collection of attribute values, indexed by ID, that are permitted to be released.Method parameters in net.shibboleth.idp.attribute.filter.context with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionvoidAttributeFilterWorkContext.addDeniedIdPAttributeValues(String attributeId, Collection<IdPAttributeValue> attributeValues) Adds a collection of attribute values that are not permitted to be released.voidAttributeFilterWorkContext.addPermittedIdPAttributeValues(String attributeId, Collection<IdPAttributeValue> attributeValues) Adds a collection of attribute values that are permitted to be released. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.filter.impl
Methods in net.shibboleth.idp.attribute.filter.impl that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionprotected Collection<IdPAttributeValue>AttributeFilterImpl.getFilteredValues(String attributeId, AttributeFilterContext filterContext) Gets the permitted values for the given attribute from theAttributeFilterWorkContext.getPermittedIdPAttributeValues()and removes all denied values given in theAttributeFilterWorkContext.getDeniedAttributeValues(). -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.filter.matcher.impl
Methods in net.shibboleth.idp.attribute.filter.matcher.impl that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionScriptedMatcher.MatcherScriptEvaluator.execute(IdPAttribute attribute, AttributeFilterContext filterContext) Execution hook.AbstractMatcher.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) Return thoseIdPAttributeValues which match this rule, or null if the matcher failed.ScriptedMatcher.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) Perform the AttributeValueMatching.Methods in net.shibboleth.idp.attribute.filter.matcher.impl with parameters of type IdPAttributeValueModifier and TypeMethodDescriptionprotected abstract booleanAbstractMatcher.compareAttributeValue(IdPAttributeValue value) Given a value do we match?booleanAttributeScopeRegexpMatcher.compareAttributeValue(IdPAttributeValue value) Given a value do we match?booleanAttributeScopeStringMatcher.compareAttributeValue(IdPAttributeValue value) Given a value do we match?booleanAttributeValueRegexpMatcher.compareAttributeValue(IdPAttributeValue value) Given a value do we match?booleanAttributeValueStringMatcher.compareAttributeValue(IdPAttributeValue value) Given a value do we match? -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.filter.matcher.logic.impl
Methods in net.shibboleth.idp.attribute.filter.matcher.logic.impl that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionAndMatcher.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) A given attribute value is considered to have matched if, and only if, it is returned by every composed.NotMatcher.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) A given attribute value is considered to have matched if it is not returned by the composedMatcher.OrMatcher.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) Return thoseIdPAttributeValues which match this rule, or null if the matcher failed. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.filter.matcher.saml.impl
Methods in net.shibboleth.idp.attribute.filter.matcher.saml.impl that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionprivate Set<IdPAttributeValue>AttributeInMetadataMatcher.filterValues(String attributeToLog, IdPAttribute attribute, List<XMLObject> requestedValues) Given an attribute and the requested values do the filtering.private Set<IdPAttributeValue>AttributeInMetadataMatcher.filterValues(IdPAttribute attribute, List<IdPAttributeValue> requestedValues) Given an attribute and the requested values do the filtering.AbstractMatchesShibMDScopeMatcher.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) Return thoseIdPAttributeValues which match this rule, or null if the matcher failed.AttributeInMetadataMatcher.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) Return thoseIdPAttributeValues which match this rule, or null if the matcher failed.Methods in net.shibboleth.idp.attribute.filter.matcher.saml.impl with parameters of type IdPAttributeValueModifier and TypeMethodDescriptionprotected abstract StringAbstractMatchesShibMDScopeMatcher.getCompareString(IdPAttributeValue value) Return the string we want to compare with for the provided value.protected StringAttributeScopeMatchesShibMDScope.getCompareString(IdPAttributeValue value) Return the string we want to compare with for the provided value.protected StringAttributeValueMatchesShibMDScope.getCompareString(IdPAttributeValue value) Return the string we want to compare with for the provided value.Method parameters in net.shibboleth.idp.attribute.filter.matcher.saml.impl with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionprivate Set<IdPAttributeValue>AttributeInMetadataMatcher.filterValues(IdPAttribute attribute, List<IdPAttributeValue> requestedValues) Given an attribute and the requested values do the filtering. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.filter.testing
Methods in net.shibboleth.idp.attribute.filter.testing that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionMockMatcher.getMatchingValues(IdPAttribute attribute, AttributeFilterContext filterContext) Return thoseIdPAttributeValues which match this rule, or null if the matcher failed. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.resolver
Methods in net.shibboleth.idp.attribute.resolver that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionstatic Map<String,List<IdPAttributeValue>> PluginDependencySupport.getAllAttributeValues(AttributeResolverWorkContext workContext, Collection<ResolverAttributeDefinitionDependency> attributeDependencies, Collection<ResolverDataConnectorDependency> dataConnectorDependencies) Gets the values from all dependencies.static List<IdPAttributeValue>PluginDependencySupport.getMergedAttributeValues(AttributeResolverWorkContext workContext, Collection<ResolverAttributeDefinitionDependency> attributeDependencies, Collection<ResolverDataConnectorDependency> dataConnectorDependencies, String attributeDefinitionId) Gets the values, as a single list, from all dependencies.Method parameters in net.shibboleth.idp.attribute.resolver with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionprivate static voidPluginDependencySupport.addAttribute(IdPAttribute source, Map<String, List<IdPAttributeValue>> target) Adds the values of the given attribute to the target collection of attribute values.private static voidPluginDependencySupport.mergeAttributeValues(IdPAttribute source, List<IdPAttributeValue> target) Adds the values of the given attribute to the set of attribute values. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.resolver.ad.impl
Fields in net.shibboleth.idp.attribute.resolver.ad.impl with type parameters of type IdPAttributeValueModifier and TypeFieldDescriptionprivate Function<ProfileRequestContext,List<IdPAttributeValue>> ContextDerivedAttributeDefinition.attributeValuesFunctionFunction used to generate the values associated with theProfileRequestContextThe function returns null or an empty list if the context isn't relevant.Methods in net.shibboleth.idp.attribute.resolver.ad.impl that return IdPAttributeValueModifier and TypeMethodDescriptionprivate IdPAttributeValuePrescopedAttributeDefinition.buildScopedStringAttributeValue(StringAttributeValue value) Builds aScopedStringAttributeValuefrom aStringAttributeValuewhose value contains a delimited value.Methods in net.shibboleth.idp.attribute.resolver.ad.impl with parameters of type IdPAttributeValueModifier and TypeMethodDescriptionprotected DateTimeAttributeValueDateTimeAttributeDefinition.convert(IdPAttributeValue input) Convert an input value into aDateTimeAttributeValueif possible.Method parameters in net.shibboleth.idp.attribute.resolver.ad.impl with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionprivate voidScriptedIdPAttributeImpl.addAsIdPAttributeValue(List<IdPAttributeValue> values, Object value) Add the provided value to the provided list, convertingStringtoStringAttributeValue.private intTemplateAttributeDefinition.addAttributeValues(String attributeName, List<IdPAttributeValue> attributeValues, Map<String, Iterator<IdPAttributeValue>> sourceValues, int curValueCount) Add values for a given attribute to the source Map.private intTemplateAttributeDefinition.addAttributeValues(String attributeName, List<IdPAttributeValue> attributeValues, Map<String, Iterator<IdPAttributeValue>> sourceValues, int curValueCount) Add values for a given attribute to the source Map.voidContextDerivedAttributeDefinition.setAttributeValuesFunction(Function<ProfileRequestContext, List<IdPAttributeValue>> function) Sets the attribute value function.private intTemplateAttributeDefinition.setupSourceValues(AttributeResolverWorkContext workContext, Map<String, Iterator<IdPAttributeValue>> sourceValues) Set up a map which can be used to populate the template. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.resolver.dc
Method parameters in net.shibboleth.idp.attribute.resolver.dc with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionExecutableSearchBuilder.build(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Creates an executable search that can be executed against a data source in order to produce results. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.resolver.dc.http.impl
Method parameters in net.shibboleth.idp.attribute.resolver.dc.http.impl with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionAbstractHTTPSearchBuilder.build(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Creates an executable search that can be executed against a data source in order to produce results.protected org.apache.hc.core5.http.ClassicHttpRequestAbstractHTTPSearchBuilder.getHttpRequest(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Default implementation just supports GET and builds a request around a URL.protected org.apache.hc.core5.http.ClassicHttpRequestTemplatedBodyBuilder.getHttpRequest(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Default implementation just supports GET and builds a request around a URL.protected StringAbstractHTTPSearchBuilder.getResultCacheKey(org.apache.hc.core5.http.ClassicHttpRequest request, AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Default implementation just allows caching of GET requests and returns the URI itself.protected StringTemplatedBodyBuilder.getResultCacheKey(org.apache.hc.core5.http.ClassicHttpRequest request, AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Default implementation just allows caching of GET requests and returns the URI itself.protected StringAbstractHTTPSearchBuilder.getURL(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Method to return the URL to access via GET.protected StringTemplatedURLBuilder.getURL(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Method to return the URL to access via GET. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.resolver.dc.impl.testing
Methods in net.shibboleth.idp.attribute.resolver.dc.impl.testing that return IdPAttributeValueModifier and TypeMethodDescriptionprivate IdPAttributeValueSAMLAttributeDataConnector.encodeString(XSString inputString) Encode a string into an attribute value.protected IdPAttributeValueSAMLAttributeDataConnector.encodeValue(XMLObject object) Method to convert a singledXMLObjectinto anIdPAttributeValueif possible.Methods in net.shibboleth.idp.attribute.resolver.dc.impl.testing that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionprotected List<IdPAttributeValue>SAMLAttributeDataConnector.encodeValues(List<XMLObject> attributeValues) Encode a list of SAML objects as set ofIdPAttributeValue. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.resolver.dc.ldap
Method parameters in net.shibboleth.idp.attribute.resolver.dc.ldap with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionParameterizedExecutableSearchFilterBuilder.build(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Creates an executable search that can be executed against a data source in order to produce results.TemplatedExecutableSearchFilterBuilder.build(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Creates an executable search that can be executed against a data source in order to produce results. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.resolver.dc.rdbms
Method parameters in net.shibboleth.idp.attribute.resolver.dc.rdbms with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionAbstractExecutableStatementBuilder.build(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Creates an executable search that can be executed against a data source in order to produce results.protected abstract StringAbstractExecutableStatementBuilder.getSQLQuery(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Method to return the query SQL.protected StringFormatExecutableStatementBuilder.getSQLQuery(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Method to return the query SQL.final StringTemplatedExecutableStatementBuilder.getSQLQuery(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Apply the context to the template. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.resolver.dc.storage.impl
Method parameters in net.shibboleth.idp.attribute.resolver.dc.storage.impl with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionTemplatedSearchBuilder.build(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Creates an executable search that can be executed against a data source in order to produce results.TemplatedSearchBuilder.getContextAndKey(AttributeResolutionContext resolutionContext, Map<String, List<IdPAttributeValue>> dependencyAttributes) Helper method to extract the parameters needed for theStorageServiceSearch. -
Uses of IdPAttributeValue in net.shibboleth.idp.attribute.resolver.impl
Methods in net.shibboleth.idp.attribute.resolver.impl that return types with arguments of type IdPAttributeValueModifier and TypeMethodDescriptionprivate List<IdPAttributeValue>AttributeResolverImpl.filterAttributeValues(String attributeId, List<IdPAttributeValue> input) Helper method for exporting attributes.Method parameters in net.shibboleth.idp.attribute.resolver.impl with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionprivate List<IdPAttributeValue>AttributeResolverImpl.filterAttributeValues(String attributeId, List<IdPAttributeValue> input) Helper method for exporting attributes. -
Uses of IdPAttributeValue in net.shibboleth.idp.saml.attribute.resolver.impl
Methods in net.shibboleth.idp.saml.attribute.resolver.impl with parameters of type IdPAttributeValueModifier and TypeMethodDescriptionprivate XMLObjectAttributeValueSAML1NameIdentifierAttributeDefinition.encodeOneValue(IdPAttributeValue theValue, AttributeResolutionContext resolutionContext) Deprecated, for removal: This API element is subject to removal in a future version.Worker function for doAttributeDefintionResolve.private XMLObjectAttributeValueSAML2NameIDAttributeDefinition.encodeOneValue(IdPAttributeValue theValue, AttributeResolutionContext resolutionContext) Deprecated, for removal: This API element is subject to removal in a future version.Worker function for doAttributeDefintionResolve. -
Uses of IdPAttributeValue in net.shibboleth.idp.saml.attribute.transcoding
Classes in net.shibboleth.idp.saml.attribute.transcoding with type parameters of type IdPAttributeValueModifier and TypeClassDescriptionclassAbstractSAML1AttributeTranscoder<EncodedType extends IdPAttributeValue>Base class for transcoders that operate on a SAML 1AttributeorAttributeDesignator.classAbstractSAML2AttributeTranscoder<EncodedType extends IdPAttributeValue>Base class for transcoders that operate on a SAML 2AttributeorRequestedAttribute.classAbstractSAMLAttributeTranscoder<AttributeType extends SAMLObject,EncodedType extends IdPAttributeValue> Base class for transcoders that support SAML attributes.interfaceSAML1AttributeTranscoder<EncodedType extends IdPAttributeValue>Marker interface for transcoders that operate on a SAML 1AttributeorAttributeDesignator.interfaceSAML2AttributeTranscoder<EncodedType extends IdPAttributeValue>Marker interface for transcoders that operate on a SAML 2AttributeorRequestedAttribute.Methods in net.shibboleth.idp.saml.attribute.transcoding that return IdPAttributeValueModifier and TypeMethodDescriptionprotected abstract IdPAttributeValueAbstractSAMLAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, AttributeType attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.Methods in net.shibboleth.idp.saml.attribute.transcoding with parameters of type IdPAttributeValueModifier and TypeMethodDescriptionprotected abstract booleanAbstractSAMLAttributeTranscoder.canEncodeValue(IdPAttribute idpAttribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.Method parameters in net.shibboleth.idp.saml.attribute.transcoding with type arguments of type IdPAttributeValueModifier and TypeMethodDescriptionprotected IdPAttributeAbstractSAML1AttributeTranscoder.buildIdPAttribute(ProfileRequestContext profileRequestContext, AttributeDesignator attribute, TranscodingRule rule, List<IdPAttributeValue> attributeValues) Builds anIdPAttributefrom the given values.protected IdPAttributeAbstractSAML2AttributeTranscoder.buildIdPAttribute(ProfileRequestContext profileRequestContext, Attribute attribute, TranscodingRule rule, List<IdPAttributeValue> attributeValues) Builds anIdPAttributefrom the given values.protected abstract IdPAttributeAbstractSAMLAttributeTranscoder.buildIdPAttribute(ProfileRequestContext profileRequestContext, AttributeType attribute, TranscodingRule rule, List<IdPAttributeValue> attributeValues) Builds anIdPAttributefrom the given values. -
Uses of IdPAttributeValue in net.shibboleth.idp.saml.attribute.transcoding.impl
Methods in net.shibboleth.idp.saml.attribute.transcoding.impl that return IdPAttributeValueModifier and TypeMethodDescriptionprotected IdPAttributeValueSAML1ByteAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, AttributeDesignator attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.protected IdPAttributeValueSAML1ScopedStringAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, AttributeDesignator attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.protected IdPAttributeValueSAML1StringAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, AttributeDesignator attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.protected IdPAttributeValueSAML1XMLObjectAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, AttributeDesignator attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.protected IdPAttributeValueSAML2ByteAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, Attribute attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.protected IdPAttributeValueSAML2DateTimeAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, Attribute attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.protected IdPAttributeValueSAML2ScopedStringAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, Attribute attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.protected IdPAttributeValueSAML2StringAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, Attribute attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.protected IdPAttributeValueSAML2XMLObjectAttributeTranscoder.decodeValue(ProfileRequestContext profileRequestContext, Attribute attribute, TranscodingRule rule, XMLObject value) Function to decode a singleXMLObjectinto anIdPAttributeValue.Methods in net.shibboleth.idp.saml.attribute.transcoding.impl with parameters of type IdPAttributeValueModifier and TypeMethodDescriptionprotected booleanSAML1ByteAttributeTranscoder.canEncodeValue(IdPAttribute attribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.protected booleanSAML1ScopedStringAttributeTranscoder.canEncodeValue(IdPAttribute attribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.protected booleanSAML1StringAttributeTranscoder.canEncodeValue(IdPAttribute attribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.protected booleanSAML1XMLObjectAttributeTranscoder.canEncodeValue(IdPAttribute attribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.protected booleanSAML2ByteAttributeTranscoder.canEncodeValue(IdPAttribute attribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.protected booleanSAML2DateTimeAttributeTranscoder.canEncodeValue(IdPAttribute attribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.protected booleanSAML2ScopedStringAttributeTranscoder.canEncodeValue(IdPAttribute attribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.protected booleanSAML2StringAttributeTranscoder.canEncodeValue(IdPAttribute attribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.protected booleanSAML2XMLObjectAttributeTranscoder.canEncodeValue(IdPAttribute attribute, IdPAttributeValue value) Checks if the given value can be handled by the transcoder.