Interface VitalRecordDefinition
-
- All Known Implementing Classes:
VitalRecordDefinitionImpl
public interface VitalRecordDefinition
Vital record definition interface- Author:
- Roy Wetherall
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Date
getNextReviewDate()
Gets the next review date based on the review periodPeriod
getReviewPeriod()
Review period for vital recordsboolean
isEnabled()
Indicates whether the vital record definition is enabled or not.
-
-
-
Method Detail
-
isEnabled
boolean isEnabled()
Indicates whether the vital record definition is enabled or not.Note: a result of false indicates that the vital record definition is inactive therefore does not impose the rules associated with vital record review on associated nodes.
- Returns:
- boolean true if enabled, false otherwise
-
getReviewPeriod
Period getReviewPeriod()
Review period for vital records- Returns:
- Period review period
-
getNextReviewDate
Date getNextReviewDate()
Gets the next review date based on the review period- Returns:
- Date date of the next review
-
-