All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.dsf.fhir.search.parameters.PatientActive Maven / Gradle / Ivy

package dev.dsf.fhir.search.parameters;

import org.hl7.fhir.r4.model.Enumerations.SearchParamType;
import org.hl7.fhir.r4.model.Patient;

import dev.dsf.fhir.search.SearchQueryParameter.SearchParameterDefinition;
import dev.dsf.fhir.search.parameters.basic.AbstractActiveParameter;

@SearchParameterDefinition(name = AbstractActiveParameter.PARAMETER_NAME, definition = "http://hl7.org/fhir/SearchParameter/Patient-active", type = SearchParamType.TOKEN, documentation = "Whether the patient record is active [true|false]")
public class PatientActive extends AbstractActiveParameter
{
	public PatientActive()
	{
		super(Patient.class, "patient", Patient::hasActive, Patient::getActive);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy