Class InstanceIdentifier
- java.lang.Object
-
- org.somda.sdc.biceps.model.participant.InstanceIdentifier
-
- All Implemented Interfaces:
Cloneable,org.jvnet.jaxb2_commons.lang.CopyTo2,org.jvnet.jaxb2_commons.lang.ToString2
- Direct Known Subclasses:
OperatingJurisdiction
public class InstanceIdentifier extends Object implements Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo2, org.jvnet.jaxb2_commons.lang.ToString2
An identifier that uniquely identifies a thing or object. Examples: object identifiers for medical record numbers, order ids, location ids, etc. InstanceIdentifier is defined in accordance to [InstanceIdentifier]. ./@Root and ./@Extension of an instance identifier do not identify the type of the object being identified, or the type of the association between the object and the identifier - they only form the identifier itself. The identifier type SHALL be expressed by ./Type.Java class for InstanceIdentifier complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="InstanceIdentifier"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://standards.ieee.org/downloads/11073/11073-10207-2017/extension}Extension" minOccurs="0"/> <element name="Type" type="{http://standards.ieee.org/downloads/11073/11073-10207-2017/participant}CodedValue" minOccurs="0"/> <element name="IdentifierName" type="{http://standards.ieee.org/downloads/11073/11073-10207-2017/participant}LocalizedText" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="Root"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}anyURI"> <minLength value="1"/> </restriction> </simpleType> </attribute> <attribute name="Extension"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <minLength value="1"/> </restriction> </simpleType> </attribute> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected ExtensionTypeextensionprotected StringextensionNameprotected List<LocalizedText>identifierNameprotected StringrootNameprotected CodedValuetype
-
Constructor Summary
Constructors Constructor Description InstanceIdentifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringBuilderappend(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)StringBuilderappendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)Objectclone()ObjectcopyTo(Object target)ObjectcopyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy2 strategy)ObjectcreateNewInstance()booleanequals(Object object)ExtensionTypegetExtension()Gets the value of the extension property.StringgetExtensionName()Gets the value of the extensionName property.List<LocalizedText>getIdentifierName()Gets the value of the identifierName property.StringgetRootName()Gets the value of the rootName property.CodedValuegetType()Gets the value of the type property.inthashCode()voidsetExtension(ExtensionType value)Sets the value of the extension property.voidsetExtensionName(String value)Sets the value of the extensionName property.voidsetIdentifierName(List<LocalizedText> value)voidsetRootName(String value)Sets the value of the rootName property.voidsetType(CodedValue value)Sets the value of the type property.StringtoString()
-
-
-
Field Detail
-
extension
protected ExtensionType extension
-
type
protected CodedValue type
-
identifierName
protected List<LocalizedText> identifierName
-
rootName
protected String rootName
-
extensionName
protected String extensionName
-
-
Method Detail
-
getExtension
public ExtensionType getExtension()
Gets the value of the extension property.- Returns:
- possible object is
ExtensionType
-
setExtension
public void setExtension(ExtensionType value)
Sets the value of the extension property.- Parameters:
value- allowed object isExtensionType
-
getType
public CodedValue getType()
Gets the value of the type property.- Returns:
- possible object is
CodedValue
-
setType
public void setType(CodedValue value)
Sets the value of the type property.- Parameters:
value- allowed object isCodedValue
-
getIdentifierName
public List<LocalizedText> getIdentifierName()
Gets the value of the identifierName property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the identifierName property.For example, to add a new item, do as follows:
getIdentifierName().add(newItem);Objects of the following type(s) are allowed in the list
LocalizedText
-
getRootName
public String getRootName()
Gets the value of the rootName property.- Returns:
- possible object is
String
-
setRootName
public void setRootName(String value)
Sets the value of the rootName property.- Parameters:
value- allowed object isString
-
getExtensionName
public String getExtensionName()
Gets the value of the extensionName property.- Returns:
- possible object is
String
-
setExtensionName
public void setExtensionName(String value)
Sets the value of the extensionName property.- Parameters:
value- allowed object isString
-
setIdentifierName
public void setIdentifierName(List<LocalizedText> value)
-
copyTo
public Object copyTo(Object target)
- Specified by:
copyToin interfaceorg.jvnet.jaxb2_commons.lang.CopyTo2
-
copyTo
public Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy2 strategy)
- Specified by:
copyToin interfaceorg.jvnet.jaxb2_commons.lang.CopyTo2
-
createNewInstance
public Object createNewInstance()
- Specified by:
createNewInstancein interfaceorg.jvnet.jaxb2_commons.lang.CopyTo2
-
append
public StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
- Specified by:
appendin interfaceorg.jvnet.jaxb2_commons.lang.ToString2
-
appendFields
public StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
- Specified by:
appendFieldsin interfaceorg.jvnet.jaxb2_commons.lang.ToString2
-
-