Package org.glassfish.hk2.api
Interface IndexedFilter
-
- All Superinterfaces:
Filter
- All Known Implementing Classes:
IndexedFilterImpl
,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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.
-
-
-
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
-
-