org.nmdp.ngs.hml.jaxb.ReportingCenter Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.06.03 at 09:54:38 AM CDT
//
package org.nmdp.ngs.hml.jaxb;
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;
/**
* 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">
* <attribute name="reporting-center-id" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="reporting-center-context" default="NMDP">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "reporting-center")
public class ReportingCenter {
@XmlAttribute(name = "reporting-center-id", required = true)
protected String reportingCenterId;
@XmlAttribute(name = "reporting-center-context")
protected String reportingCenterContext;
/**
* Gets the value of the reportingCenterId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReportingCenterId() {
return reportingCenterId;
}
/**
* Sets the value of the reportingCenterId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReportingCenterId(String value) {
this.reportingCenterId = value;
}
/**
* Gets the value of the reportingCenterContext property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReportingCenterContext() {
if (reportingCenterContext == null) {
return "NMDP";
} else {
return reportingCenterContext;
}
}
/**
* Sets the value of the reportingCenterContext property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReportingCenterContext(String value) {
this.reportingCenterContext = value;
}
}