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

org.openehr.utils.message.UnknownMessageCode Maven / Gradle / Ivy

package org.openehr.utils.message;

/**
 * A message that does not have a code is represented with an UnknownMessageCode
 */
public class UnknownMessageCode implements MessageCode {
    @Override
    public String getCode() {
        return "";
    }

    @Override
    public String getMessageTemplate() {
        return "";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy