Class SingleRuleResult
- java.lang.Object
-
- com.priint.pubserver.cometserver.businessrulesmanager.result.SingleRuleResult
-
- All Implemented Interfaces:
java.io.Serializable
public class SingleRuleResult extends java.lang.Object implements java.io.SerializableData container for all results obtained during execution of business rules- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SingleRuleResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.BooleangetExecutedWithErrors()java.util.List<BusinessRuleResult>getResultList()voidsetExecutedWithErrors(java.lang.Boolean executedWithErrors)voidsetResultList(java.util.List<BusinessRuleResult> resultList)
-
-
-
Method Detail
-
getExecutedWithErrors
public java.lang.Boolean getExecutedWithErrors()
- Returns:
- executedWithErrors - a flag if the result contains errors
-
setExecutedWithErrors
public void setExecutedWithErrors(java.lang.Boolean executedWithErrors)
- Parameters:
executedWithErrors- set error flag
-
getResultList
public java.util.List<BusinessRuleResult> getResultList()
- Returns:
- result list. Initially we return an empty list.
-
setResultList
public void setResultList(java.util.List<BusinessRuleResult> resultList)
- Parameters:
resultList- set results
-
-