Class EntryDNVirtualAttributeProvider


  • public class EntryDNVirtualAttributeProvider
    extends VirtualAttributeProvider<EntryDnVirtualAttributeCfg>
    This class implements a virtual attribute provider that is meant to serve the entryDN operational attribute as described in draft-zeilenga-ldap-entrydn.
    • Constructor Detail

      • EntryDNVirtualAttributeProvider

        public EntryDNVirtualAttributeProvider()
    • Method Detail

      • getAttribute

        public Attribute getAttribute​(Entry entry,
                                      AttributeDescription attributeDescription)
        Description copied from class: VirtualAttributeProvider
        Generates an unmodifiable attribute with the values for the provided entry.
        Specified by:
        getAttribute in class VirtualAttributeProvider<EntryDnVirtualAttributeCfg>
        Parameters:
        entry - The entry for which the values are to be generated.
        attributeDescription - the attribute description corresponding to this virtual attribute
        Returns:
        The unmodifiable attribute with the values generated for the provided entry. It may be empty, but it must not be null.
      • isSearchable

        public boolean isSearchable​(AttributeDescription attributeDescription,
                                    SearchOperation searchOperation,
                                    boolean isPreIndexed)
        Indicates whether this attribute may be included in search filters as part of the criteria for locating entries.. This virtual attribute will support search operations only if one of the following is true about the search filter:
        • It is an equality filter targeting the associated attribute type.
        • It is an AND filter in which at least one of the components is an equality filter targeting the associated attribute type.
        • It is an OR filter in which all of the components are equality filters targeting the associated attribute type.
        This virtual attribute also can be optimized as pre-indexed.
        Overrides:
        isSearchable in class VirtualAttributeProvider<EntryDnVirtualAttributeCfg>
        Parameters:
        attributeDescription - the attribute description corresponding to this virtual attribute
        searchOperation - The search operation for which to make the determination.
        isPreIndexed - Indicates if we expect the search on the virtual attribute to be faster than an index search.
        Returns:
        true if this attribute may be included in search filters, or false if not.
      • processSearch

        public void processSearch​(AttributeDescription attributeDescription,
                                  SearchOperation searchOperation)
        Description copied from class: VirtualAttributeProvider
        Processes the provided search operation in which the search criteria includes an operation targeted at this virtual attribute. This method should only be called if isSearchable returns true and it is not possible to construct a manageable candidate list by processing other elements of the search criteria.
        Overrides:
        processSearch in class VirtualAttributeProvider<EntryDnVirtualAttributeCfg>
        Parameters:
        attributeDescription - the attribute description corresponding to this virtual attribute
        searchOperation - The search operation to be processed.