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

org.projecthusky.communication.mpi.MpiQuery Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
/*
 * This code is made available under the terms of the Eclipse Public License v1.0
 * in the github project https://github.com/project-husky/husky there you also
 * find a list of the contributors and the license information.
 *
 * This project has been developed further and modified by the joined working group Husky
 * on the basis of the eHealth Connector opensource project from June 28, 2021,
 * whereas medshare GmbH is the initial and main contributor/author of the eHealth Connector.
 *
 */
package org.projecthusky.communication.mpi;

import org.hl7.fhir.r4.model.*;

import java.util.Date;

/**
 * The interface MpiQuery defines a query object which allows to add the query parameters for the patient demographics
 * query and control the subsequent query steps (continue, cancel) when the query is batched.
 */
public interface MpiQuery {

    /**
     * Returned patient identifiers will include the added domain if available
     *
     * @param organizationOID the organization oid
     * @return the query object
     */
    public abstract MpiQuery addDomainToReturn(String organizationOID);

    /**
     * Adds the mothers maiden name to the query
     *
     * @param useFuzzySearch if true does not require an exact match, see Table 3.47.4.1.2-1: Model Attributes (ITI
     *                       TF-2b)
     * @param humanDt        name
     * @return the query object
     */
    public abstract MpiQuery addMothersMaidenName(boolean useFuzzySearch, HumanName humanDt);

    /**
     * Adds a patient address to the query.
     *
     * @param address the address to be queried for
     * @return the query object
     */
    public abstract MpiQuery addPatientAddress(Address address);

    /**
     * Adds a patient identifier to be queried for.
     *
     * @param identifier patient identifier
     * @return the query object
     */
    public abstract MpiQuery addPatientIdentifier(Identifier identifier);

    /**
     * Adds a patient name to the query.
     *
     * @param useFuzzySearch if true does not require an exact match, see Table 3.47.4.1.2-1: Model Attributes (ITI
     *                       TF-2b)
     * @param humanDt        name
     * @return the query object
     */
    public abstract MpiQuery addPatientName(boolean useFuzzySearch, HumanName humanDt);

    /**
     * Adds a patient telecom to be queried for.
     *
     * @param contactPoint telecom
     * @return the query object
     */
    public abstract MpiQuery addPatientTelecom(ContactPoint contactPoint);

    /**
     * Cancels the next query.
     *
     * @return the query object
     */
    public abstract MpiQuery cancelQuery();

    /**
     * Continues query for the next pageCount results.
     *
     * @return the query object
     */
    public abstract MpiQuery continueQuery();

    /**
     * Sets the page count for partial lists of search results (QueryByParameter.initialQuantity).
     *
     * @param pageCount the page count
     * @return the query object
     */
    public abstract MpiQuery setPageCount(int pageCount);

    /**
     * Sets the patient birth date for the query.
     *
     * @param date the date
     * @return the query object
     */
    public abstract MpiQuery setPatientBirthDate(Date date);

    /**
     * Sets the patient sex for the query.
     *
     * @param adminstrativeGenderEnum gender
     * @return the query object
     */
    public abstract MpiQuery setPatientSex(
            Enumerations.AdministrativeGender adminstrativeGenderEnum);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy