String.java
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
- // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2019.08.22 at 12:18:25 PM UTC
- //
- package gov.ojp.it.jxdm._3_0_3.proxy.xsd._1;
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlAttribute;
- import javax.xml.bind.annotation.XmlID;
- import javax.xml.bind.annotation.XmlSchemaType;
- import javax.xml.bind.annotation.XmlSeeAlso;
- import javax.xml.bind.annotation.XmlType;
- import javax.xml.bind.annotation.XmlValue;
- import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
- import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
- import gov.ojp.it.jxdm._3_0.TextType;
- /**
- * <p>Java class for string complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="string">
- * <simpleContent>
- * <extension base="<http://www.w3.org/2001/XMLSchema>string">
- * <attGroup ref="{http://www.it.ojp.gov/jxdm/3.0.3}SuperTypeMetadata"/>
- * </extension>
- * </simpleContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "string", propOrder = {
- "value"
- })
- @XmlSeeAlso({
- TextType.class
- })
- public class String {
- @XmlValue
- protected java.lang.String value;
- @XmlAttribute(name = "sourceIDText")
- protected java.lang.String sourceIDText;
- @XmlAttribute(name = "id")
- @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
- @XmlID
- @XmlSchemaType(name = "ID")
- protected java.lang.String id;
- /**
- * Default no-arg constructor
- *
- */
- public String() {
- super();
- }
- /**
- * Fully-initialising value constructor
- *
- */
- public String(final java.lang.String value, final java.lang.String sourceIDText, final java.lang.String id) {
- this.value = value;
- this.sourceIDText = sourceIDText;
- this.id = id;
- }
- /**
- * Gets the value of the value property.
- *
- * @return
- * possible object is
- * {@link java.lang.String }
- *
- */
- public java.lang.String getValue() {
- return value;
- }
- /**
- * Sets the value of the value property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String }
- *
- */
- public void setValue(java.lang.String value) {
- this.value = value;
- }
- /**
- * Gets the value of the sourceIDText property.
- *
- * @return
- * possible object is
- * {@link java.lang.String }
- *
- */
- public java.lang.String getSourceIDText() {
- return sourceIDText;
- }
- /**
- * Sets the value of the sourceIDText property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String }
- *
- */
- public void setSourceIDText(java.lang.String value) {
- this.sourceIDText = value;
- }
- /**
- * Gets the value of the id property.
- *
- * @return
- * possible object is
- * {@link java.lang.String }
- *
- */
- public java.lang.String getId() {
- return id;
- }
- /**
- * Sets the value of the id property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String }
- *
- */
- public void setId(java.lang.String value) {
- this.id = value;
- }
- }