Class VerificationResult

  • All Implemented Interfaces:
    Visitable

    @Generated("org.linuxforhealth.fhir.tools.CodeGenerator")
    public class VerificationResult
    extends DomainResource
    Describes validation requirements, source(s), status and dates for one or more elements.

    Maturity level: FMM0 (Trial Use)

    • Method Detail

      • getTarget

        public java.util.List<Reference> getTarget()
        A resource that was validated.
        Returns:
        An unmodifiable list containing immutable objects of type Reference that may be empty.
      • getTargetLocation

        public java.util.List<String> getTargetLocation()
        The fhirpath location(s) within the resource that was validated.
        Returns:
        An unmodifiable list containing immutable objects of type String that may be empty.
      • getNeed

        public CodeableConcept getNeed()
        The frequency with which the target must be validated (none; initial; periodic).
        Returns:
        An immutable object of type CodeableConcept that may be null.
      • getStatus

        public Status getStatus()
        The validation status of the target (attested; validated; in process; requires revalidation; validation failed; revalidation failed).
        Returns:
        An immutable object of type Status that is non-null.
      • getStatusDate

        public DateTime getStatusDate()
        When the validation status was updated.
        Returns:
        An immutable object of type DateTime that may be null.
      • getValidationType

        public CodeableConcept getValidationType()
        What the target is validated against (nothing; primary source; multiple sources).
        Returns:
        An immutable object of type CodeableConcept that may be null.
      • getValidationProcess

        public java.util.List<CodeableConcept> getValidationProcess()
        The primary process by which the target is validated (edit check; value set; primary source; multiple sources; standalone; in context).
        Returns:
        An unmodifiable list containing immutable objects of type CodeableConcept that may be empty.
      • getFrequency

        public Timing getFrequency()
        Frequency of revalidation.
        Returns:
        An immutable object of type Timing that may be null.
      • getLastPerformed

        public DateTime getLastPerformed()
        The date/time validation was last completed (including failed validations).
        Returns:
        An immutable object of type DateTime that may be null.
      • getNextScheduled

        public Date getNextScheduled()
        The date when target is next validated, if appropriate.
        Returns:
        An immutable object of type Date that may be null.
      • getFailureAction

        public CodeableConcept getFailureAction()
        The result if validation fails (fatal; warning; record only; none).
        Returns:
        An immutable object of type CodeableConcept that may be null.
      • accept

        public void accept​(java.lang.String elementName,
                           int elementIndex,
                           Visitor visitor)
        Description copied from interface: Visitable
        Accept a Visitor and invoke the appropriate visit methods. A typical implementation would look like this:
         if (visitor.preVisit(this)) {
             visitor.visitStart(elementName, elementIndex, this);
             if (visitor.visit(elementName, elementIndex, this)) {
                 // visit children
             }
             visitor.visitEnd(elementName, elementIndex, this);
             visitor.postVisit(this);
         }
         
        Specified by:
        accept in interface Visitable
        Specified by:
        accept in class AbstractVisitable
        Parameters:
        elementName - the name of the element in the context of this visit
        elementIndex - the index of the element in a list or -1 if it is not contained within a List
        visitor - the visitor to use
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object