org.glassfish.hk2.api
Interface IndexedFilter

All Superinterfaces:
Filter
All Known Implementing Classes:
ContractLocatorFilter, IndexedFilterImpl, MetadataIndexFilter, QualifierFilter, SpecificFilterImpl

public interface IndexedFilter
extends Filter

This filter can be used to limit the set of Descriptors passed to the matches method. If both methods return non-null then only those fields that are both named with the returned name AND have the given advertised contract will be given to the matches method

Author:
jwells

Method Summary
 String getAdvertisedContract()
          If this returns non-null then this index will be used to limit the set of Descriptors that will be passed to the matches method.
 String getName()
          If this returns non-null then this name will be used to limit the set of Descriptors that will be passed to the matches method.
 
Methods inherited from interface org.glassfish.hk2.api.Filter
matches
 

Method Detail

getAdvertisedContract

String getAdvertisedContract()
If this returns non-null then this index will be used to limit the set of Descriptors that will be passed to the matches method. Only those descriptors that have an AdverisedContract of this value will be passed to the matches method.

Returns:
If non null this will limit the descriptors passed to the matches method to those that have this contract in their set of advertised contracts

getName

String getName()
If this returns non-null then this name will be used to limit the set of Descriptors that will be passed to the matches method. Only those descriptors that has an name of this value will be passed to the matches method.

Returns:
If non null this will limit the descriptors passed to the matches method to those that have name


Copyright © 2013 Oracle Corporation. All Rights Reserved.