
ihe.iti.xcpd._2009.ObjectFactory Maven / Gradle / Ivy
Show all versions of ihe-iti Show documentation
package ihe.iti.xcpd._2009;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.datatype.Duration;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the ihe.iti.xcpd._2009 package.
* An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _PatientLocationQueryRequest_QNAME = new QName("urn:ihe:iti:xcpd:2009", "PatientLocationQueryRequest");
private final static QName _CorrelationTimeToLive_QNAME = new QName("urn:ihe:iti:xcpd:2009", "CorrelationTimeToLive");
private final static QName _PatientLocationQueryResponse_QNAME = new QName("urn:ihe:iti:xcpd:2009", "PatientLocationQueryResponse");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: ihe.iti.xcpd._2009
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link PatientLocationQueryResponseType }
*
*/
public PatientLocationQueryResponseType createPatientLocationQueryResponseType() {
return new PatientLocationQueryResponseType();
}
/**
* Create an instance of {@link PatientLocationQueryRequestType }
*
*/
public PatientLocationQueryRequestType createPatientLocationQueryRequestType() {
return new PatientLocationQueryRequestType();
}
/**
* Create an instance of {@link PatientLocationQueryResponseType.PatientLocationResponse }
*
*/
public PatientLocationQueryResponseType.PatientLocationResponse createPatientLocationQueryResponseTypePatientLocationResponse() {
return new PatientLocationQueryResponseType.PatientLocationResponse();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link PatientLocationQueryRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:ihe:iti:xcpd:2009", name = "PatientLocationQueryRequest")
public JAXBElement createPatientLocationQueryRequest(PatientLocationQueryRequestType value) {
return new JAXBElement(_PatientLocationQueryRequest_QNAME, PatientLocationQueryRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Duration }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:ihe:iti:xcpd:2009", name = "CorrelationTimeToLive")
public JAXBElement createCorrelationTimeToLive(Duration value) {
return new JAXBElement(_CorrelationTimeToLive_QNAME, Duration.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link PatientLocationQueryResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:ihe:iti:xcpd:2009", name = "PatientLocationQueryResponse")
public JAXBElement createPatientLocationQueryResponse(PatientLocationQueryResponseType value) {
return new JAXBElement(_PatientLocationQueryResponse_QNAME, PatientLocationQueryResponseType.class, null, value);
}
}