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

org.projecthusky.xua.hl7v3.InstanceIdentifier Maven / Gradle / Ivy

There is a newer version: 2.5.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.xua.hl7v3;

import javax.xml.namespace.QName;

/**
 * 
 * 
Describing the methods of the InstanceIdentifier Interface
*
Beschreibung der Methoden des InstanceIdentifier Interfaces
*
*
* */ public interface InstanceIdentifier { /** Element local name. */ public static final String DEFAULT_ELEMENT_LOCAL_NAME = "InstanceIdentifier"; public static final String DEFAULT_NS_URI = "urn:hl7-org:v3"; public static final String DEFAULT_PREFIX = "hl7"; /** Default element name. */ public static final QName ELEMENT_NAME = new QName(DEFAULT_NS_URI, DEFAULT_ELEMENT_LOCAL_NAME, DEFAULT_PREFIX); /** Local name of the XSI type. */ public static final String TYPE_LOCAL_NAME = "InstanceIdentifier"; /** QName of the XSI type. */ public static final QName TYPE_NAME = new QName(DEFAULT_NS_URI, TYPE_LOCAL_NAME, "hl7"); /** * * *
Method to get the value of the extension.
*
Methode um den Wert der extension zu erhalten.
*
*
* * @return *
The extension as string.
*
Die Extention als String.
*
*
* */ String getExtension(); /** * * *
Method to get the value of the root.
*
Methode um den Wert von Root zu erhalten.
*
*
* * @return *
The root as string.
*
Die Root als String.
*
*
* */ String getRoot(); /** * * *
Method to set the extension.
*
Methode um die Extension zu setzten.
*
*
* * @param value *
The value to be set as extension.
*
Der wert der als Extesion gesetzt werden soll.
*
*
* */ void setExtension(String value); /** * * *
Method to set the root.
*
Methode um die Root zu setzten.
*
*
* * @param value *
The value to be set as root.
*
Der wert der als Root gesetzt werden soll.
*
*
* */ void setRoot(String value); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy