Package org.glassfish.hk2.api
Interface IndexedFilter
- All Superinterfaces:
Filter
- All Known Implementing Classes:
ChildFilter
,IndexedFilterImpl
,Main.MainFilter
,NoNameTypeFilter
,ServiceLocatorImpl.UnqualifiedIndexedFilter
,SpecificFilterImpl
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
-
Method Summary
Modifier and TypeMethodDescriptionIf this returns non-null then this index will be used to limit the set of Descriptors that will be passed to the matches method.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.
-
Method Details
-
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
-