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

ca.uhn.hl7v2.hoh.raw.api.RawReceivable Maven / Gradle / Ivy

The newest version!
package ca.uhn.hl7v2.hoh.raw.api;

import ca.uhn.hl7v2.hoh.api.AbstractReceivable;
import ca.uhn.hl7v2.hoh.api.IReceivable;

public class RawReceivable extends AbstractReceivable implements IReceivable {

	private final String myRawMessage;

	public RawReceivable(String theRawMessage) {
		myRawMessage = theRawMessage;
	}

	/**
	 * {@inheritDoc}
	 */
	public String getMessage() {
		return myRawMessage;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy