
com.imsweb.algorithms.AlgorithmOutput Maven / Gradle / Ivy
/*
* Copyright (C) 2019 Information Management Services, Inc.
*/
package com.imsweb.algorithms;
import java.util.Map;
/**
* Abstraction of the "output" that an algorithm produces when executed.
*/
public class AlgorithmOutput {
public static AlgorithmOutput of(Map patient) {
AlgorithmOutput output = new AlgorithmOutput();
output.setPatient(patient);
return output;
}
private Map _patient;
public Map getPatient() {
return _patient;
}
public void setPatient(Map patient) {
_patient = patient;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy