Interface BusinessRulesServiceLocal
-
public interface BusinessRulesServiceLocalLocal interface for the BusinessRules service from the Planner API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BusinessRulegetBusinessRule(java.lang.Integer id)Returns the business rule at the specified IDjava.util.List<BusinessRule>getBusinessRules(BusinessRulesFilter filter)Returns the list of business rules fulfilling the search criteria passed as parameter
-
-
-
Method Detail
-
getBusinessRule
BusinessRule getBusinessRule(java.lang.Integer id) throws PubServerException
Returns the business rule at the specified ID- Parameters:
id- business rule ID- Returns:
- the business rule
- Throws:
PubServerException- See Also:
BusinessRule
-
getBusinessRules
java.util.List<BusinessRule> getBusinessRules(BusinessRulesFilter filter) throws PubServerException
Returns the list of business rules fulfilling the search criteria passed as parameter- Parameters:
filter- search criteria - BussinessRulesFilter object- Returns:
- the list of business rules
- Throws:
PubServerException- See Also:
BusinessRule,BusinessRulesFilter
-
-