org.immregistries.codebase.client.generated.Deprecated Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codebase-client Show documentation
Show all versions of codebase-client Show documentation
Reads the Codebase XML and provides helper classes to use it.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.10.28 at 12:30:21 PM EDT
//
package org.immregistries.codebase.client.generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="new-code-value" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="effective-date" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"newCodeValue",
"reason",
"effectiveDate"
})
public class Deprecated {
@XmlElement(name = "new-code-value", required = true)
protected String newCodeValue;
@XmlElement(required = true)
protected String reason;
@XmlElement(name = "effective-date", required = true)
protected String effectiveDate;
/**
* Gets the value of the newCodeValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNewCodeValue() {
return newCodeValue;
}
/**
* Sets the value of the newCodeValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNewCodeValue(String value) {
this.newCodeValue = value;
}
/**
* Gets the value of the reason property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReason() {
return reason;
}
/**
* Sets the value of the reason property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReason(String value) {
this.reason = value;
}
/**
* Gets the value of the effectiveDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEffectiveDate() {
return effectiveDate;
}
/**
* Sets the value of the effectiveDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEffectiveDate(String value) {
this.effectiveDate = value;
}
}