Package org.opennms.netmgt.bsm.service
Interface BusinessServiceSearchCriteria
-
- All Known Implementing Classes:
BusinessServiceSearchCriteriaBuilder
public interface BusinessServiceSearchCriteria
Criteria for searching for business services- Author:
- Christian Pape
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<BusinessService>
apply(BusinessServiceManager businessServiceManager, java.util.List<BusinessService> businessServices)
This will apply the criteria represented by an instance of this interface to a list of business services and will return a subset of these business services.
-
-
-
Method Detail
-
apply
java.util.List<BusinessService> apply(BusinessServiceManager businessServiceManager, java.util.List<BusinessService> businessServices)
This will apply the criteria represented by an instance of this interface to a list of business services and will return a subset of these business services.- Parameters:
businessServiceManager
- the business service manager (required to gather the operational status)businessServices
- the list of business services- Returns:
- a subset of business services
-
-