org.projecthusky.xua.hl7v3.CE Maven / Gradle / Ivy
/*
* 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.xua.hl7v3;
/**
*
*/
public interface CE {
/**
*
*
* Method to get the code.
* Methode um den code zu erhalten.
*
*
*
* @return
* The Code.
* Der Code.
*
*
*
*/
public String getCode();
/**
*
*
* Method to get the CodeSystem.
* Methode um das CodeSystem zu erhalten.
*
*
*
* @return
* The CodeSystem.
* Das CodeSystem.
*
*
*
*/
public String getCodeSystem();
/**
*
*
* Method to get the CodeSystemName.
* Methode um den CodeSystemName zu erhalten.
*
*
*
* @return
* The CodeSystemName.
* Der CodeSystemName.
*
*
*
*/
public String getCodeSystemName();
/**
*
*
* Method to get the CodeSystemVersion.
* Methode um die CodeSystemVersion zu erhalten.
*
*
*
* @return
* The CodeSystemVersion.
* Die CodeSystemVersion.
*
*
*
*/
public String getCodeSystemVersion();
/**
*
*
* Method to get the DisplayName.
* Methode um den DisplayName zu erhalten.
*
*
*
* @return
* The DisplayName.
* Der DisplayName.
*
*
*
*/
public String getDisplayName();
/**
*
*
* Method to set the Code.
* Methode um den Code zu setzen.
*
*
*
* @param value
* The value to be set as Code.
* Der Wert der als Code gesetzt werden soll.
*
*
*
*/
public void setCode(String value);
/**
*
*
* Method to set the CodeSystem.
* Methode um das CodeSystem zu setzen.
*
*
*
* @param value
* The value to be set as CodeSystem.
* Der Wert der als CodeSystem gesetzt werden soll.
*
*
*
*/
public void setCodeSystem(String value);
/**
*
*
* Method to set the CodeSystemName.
* Methode um den CodeSystemName zu setzen.
*
*
*
* @param value
* The value to be set as CodeSystemName.
* Der Wert der als CodeSystemName gesetzt werden soll.
*
*
*
*/
public void setCodeSystemName(String value);
/**
*
*
* Method to set the CodeSystemVersion.
* Methode um die CodeSystemVersion zu setzen.
*
*
*
* @param value
* The value to be set as CodeSystemVersion.
* Der Wert der als CodeSystemVersion gesetzt werden soll.
*
*
*
*/
public void setCodeSystemVersion(String value);
/**
*
*
* Method to set the DisplayName.
* Methode um den DisplayName zu setzen.
*
*
*
* @param value
* The value to be set as DisplayName.
* Der Wert der als DisplayName gesetzt werden soll.
*
*
*
*/
public void setDisplayName(String value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy