org.plasma.metamodel.ValueSetConstraint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plasma-metamodel Show documentation
Show all versions of plasma-metamodel Show documentation
The Plasma Metamodel Module
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.10.06 at 02:19:48 PM MST
//
package org.plasma.metamodel;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* This stereotype allows a value set constraint to be specified for a class attribute. Attributes that have a coded type may be constrained such that the code value in an instance should be taken from the specified value set. The coding strength determines whether exceptions are allowed.
*
* Java class for ValueSetConstraint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ValueSetConstraint">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="versionIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="versionDate" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="versionTime" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="codingStrength" type="{http://plasma.org/metamodel}CodingStrength" />
* <attribute name="minimumValueSetId" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="ignoredValueSetId" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="rootCode" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ValueSetConstraint")
@XmlRootElement(name = "ValueSetConstraint")
public class ValueSetConstraint {
@XmlAttribute(name = "id")
protected String id;
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "versionIdentifier")
protected String versionIdentifier;
@XmlAttribute(name = "versionDate")
protected String versionDate;
@XmlAttribute(name = "versionTime")
protected String versionTime;
@XmlAttribute(name = "codingStrength")
protected CodingStrength codingStrength;
@XmlAttribute(name = "minimumValueSetId")
protected String minimumValueSetId;
@XmlAttribute(name = "ignoredValueSetId")
protected String ignoredValueSetId;
@XmlAttribute(name = "rootCode")
protected String rootCode;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the versionIdentifier property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersionIdentifier() {
return versionIdentifier;
}
/**
* Sets the value of the versionIdentifier property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersionIdentifier(String value) {
this.versionIdentifier = value;
}
/**
* Gets the value of the versionDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersionDate() {
return versionDate;
}
/**
* Sets the value of the versionDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersionDate(String value) {
this.versionDate = value;
}
/**
* Gets the value of the versionTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersionTime() {
return versionTime;
}
/**
* Sets the value of the versionTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersionTime(String value) {
this.versionTime = value;
}
/**
* Gets the value of the codingStrength property.
*
* @return
* possible object is
* {@link CodingStrength }
*
*/
public CodingStrength getCodingStrength() {
return codingStrength;
}
/**
* Sets the value of the codingStrength property.
*
* @param value
* allowed object is
* {@link CodingStrength }
*
*/
public void setCodingStrength(CodingStrength value) {
this.codingStrength = value;
}
/**
* Gets the value of the minimumValueSetId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMinimumValueSetId() {
return minimumValueSetId;
}
/**
* Sets the value of the minimumValueSetId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMinimumValueSetId(String value) {
this.minimumValueSetId = value;
}
/**
* Gets the value of the ignoredValueSetId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIgnoredValueSetId() {
return ignoredValueSetId;
}
/**
* Sets the value of the ignoredValueSetId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIgnoredValueSetId(String value) {
this.ignoredValueSetId = value;
}
/**
* Gets the value of the rootCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRootCode() {
return rootCode;
}
/**
* Sets the value of the rootCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRootCode(String value) {
this.rootCode = value;
}
}