All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.hhs.fha.nhinc.common.deferredqueuemanager.QueryDeferredQueueRequestType Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
//
// 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: 2016.02.11 at 11:39:13 AM EST 
//


package gov.hhs.fha.nhinc.common.deferredqueuemanager;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for QueryDeferredQueueRequestType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="QueryDeferredQueueRequestType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="creationBeginTime" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         <element name="creationEndTime" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         <element name="responseBeginTime" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         <element name="responseEndTime" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         <element name="serviceName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="100" minOccurs="0"/>
 *         <element name="direction" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="communityId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="1000" minOccurs="0"/>
 *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="100" minOccurs="0"/>
 *         <element name="responseType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QueryDeferredQueueRequestType", propOrder = { "creationBeginTime", "creationEndTime", "responseBeginTime", "responseEndTime", "serviceName", "direction", "communityId", "status", "responseType" }) public class QueryDeferredQueueRequestType { @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar creationBeginTime; @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar creationEndTime; @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar responseBeginTime; @XmlElement(required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar responseEndTime; protected List serviceName; @XmlElement(required = true) protected String direction; protected List communityId; protected List status; @XmlElement(required = true) protected String responseType; /** * Gets the value of the creationBeginTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreationBeginTime() { return creationBeginTime; } /** * Sets the value of the creationBeginTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreationBeginTime(XMLGregorianCalendar value) { this.creationBeginTime = value; } /** * Gets the value of the creationEndTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreationEndTime() { return creationEndTime; } /** * Sets the value of the creationEndTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreationEndTime(XMLGregorianCalendar value) { this.creationEndTime = value; } /** * Gets the value of the responseBeginTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getResponseBeginTime() { return responseBeginTime; } /** * Sets the value of the responseBeginTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setResponseBeginTime(XMLGregorianCalendar value) { this.responseBeginTime = value; } /** * Gets the value of the responseEndTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getResponseEndTime() { return responseEndTime; } /** * Sets the value of the responseEndTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setResponseEndTime(XMLGregorianCalendar value) { this.responseEndTime = value; } /** * Gets the value of the serviceName 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 set method for the serviceName property. * *

* For example, to add a new item, do as follows: *

     *    getServiceName().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getServiceName() { if (serviceName == null) { serviceName = new ArrayList(); } return this.serviceName; } /** * Gets the value of the direction property. * * @return * possible object is * {@link String } * */ public String getDirection() { return direction; } /** * Sets the value of the direction property. * * @param value * allowed object is * {@link String } * */ public void setDirection(String value) { this.direction = value; } /** * Gets the value of the communityId 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 set method for the communityId property. * *

* For example, to add a new item, do as follows: *

     *    getCommunityId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getCommunityId() { if (communityId == null) { communityId = new ArrayList(); } return this.communityId; } /** * Gets the value of the status 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 set method for the status property. * *

* For example, to add a new item, do as follows: *

     *    getStatus().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getStatus() { if (status == null) { status = new ArrayList(); } return this.status; } /** * Gets the value of the responseType property. * * @return * possible object is * {@link String } * */ public String getResponseType() { return responseType; } /** * Sets the value of the responseType property. * * @param value * allowed object is * {@link String } * */ public void setResponseType(String value) { this.responseType = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy