org.mitre.cybox.objects.whois.ObjectFactory Maven / Gradle / Ivy
//
// 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: 2015.11.01 at 11:48:17 AM PST
//
package org.mitre.cybox.objects.whois;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.mitre.cybox.objects.whois 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 _WhoisEntry_QNAME = new QName("http://cybox.mitre.org/objects#WhoisObject-2", "Whois_Entry");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.mitre.cybox.objects.whois
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link WhoisObjectType }
*
*/
public WhoisObjectType createWhoisObjectType() {
return new WhoisObjectType();
}
/**
* Create an instance of {@link WhoisRegistrarInfoType }
*
*/
public WhoisRegistrarInfoType createWhoisRegistrarInfoType() {
return new WhoisRegistrarInfoType();
}
/**
* Create an instance of {@link WhoisContactsType }
*
*/
public WhoisContactsType createWhoisContactsType() {
return new WhoisContactsType();
}
/**
* Create an instance of {@link WhoisContactType }
*
*/
public WhoisContactType createWhoisContactType() {
return new WhoisContactType();
}
/**
* Create an instance of {@link WhoisStatusType }
*
*/
public WhoisStatusType createWhoisStatusType() {
return new WhoisStatusType();
}
/**
* Create an instance of {@link WhoisStatusesType }
*
*/
public WhoisStatusesType createWhoisStatusesType() {
return new WhoisStatusesType();
}
/**
* Create an instance of {@link WhoisNameserversType }
*
*/
public WhoisNameserversType createWhoisNameserversType() {
return new WhoisNameserversType();
}
/**
* Create an instance of {@link WhoisRegistrantInfoType }
*
*/
public WhoisRegistrantInfoType createWhoisRegistrantInfoType() {
return new WhoisRegistrantInfoType();
}
/**
* Create an instance of {@link WhoisRegistrantsType }
*
*/
public WhoisRegistrantsType createWhoisRegistrantsType() {
return new WhoisRegistrantsType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link WhoisObjectType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://cybox.mitre.org/objects#WhoisObject-2", name = "Whois_Entry")
public JAXBElement createWhoisEntry(WhoisObjectType value) {
return new JAXBElement(_WhoisEntry_QNAME, WhoisObjectType.class, null, value);
}
}