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

org.dmtf.wsman.cimbinding.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.08.05 at 05:23:55 PM EDT 
//


package org.dmtf.wsman.cimbinding;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
import org.dmtf.wsman.AttributableEmpty;


/**
 * This object contains factory methods for each 
 * Java content interface and Java element interface 
 * generated in the org.dmtf.wsman.cimbinding 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 _AssociatedInstances_QNAME = new QName("http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", "AssociatedInstances"); private final static QName _AssociationInstances_QNAME = new QName("http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", "AssociationInstances"); private final static QName _DerivedRepresentation_QNAME = new QName("http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", "DerivedRepresentation"); private final static QName _PolymorphismMode_QNAME = new QName("http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", "PolymorphismMode"); private final static QName _CapabilityFaultIncludesCIMError_QNAME = new QName("http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", "Capability_FaultIncludesCIMError"); private final static QName _CapabilityClassMetadataPathTypeEPR_QNAME = new QName("http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", "Capability_ClassMetadataPathType_EPR"); private final static QName _CapabilityClassMetadataPathTypeURL_QNAME = new QName("http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", "Capability_ClassMetadataPathType_URL"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.dmtf.wsman.cimbinding * */ public ObjectFactory() { } /** * Create an instance of {@link AssociatedInstancesType } * */ public AssociatedInstancesType createAssociatedInstancesType() { return new AssociatedInstancesType(); } /** * Create an instance of {@link AssociationInstancesType } * */ public AssociationInstancesType createAssociationInstancesType() { return new AssociationInstancesType(); } /** * Create an instance of {@link CIMException } * */ public CIMException createCIMException() { return new CIMException(); } /** * Create an instance of {@link PolymorphismModeNotSupported } * */ public PolymorphismModeNotSupported createPolymorphismModeNotSupported() { return new PolymorphismModeNotSupported(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AssociatedInstancesType }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", name = "AssociatedInstances") public JAXBElement createAssociatedInstances(AssociatedInstancesType value) { return new JAXBElement(_AssociatedInstances_QNAME, AssociatedInstancesType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AssociationInstancesType }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", name = "AssociationInstances") public JAXBElement createAssociationInstances(AssociationInstancesType value) { return new JAXBElement(_AssociationInstances_QNAME, AssociationInstancesType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link AttributableEmpty }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", name = "DerivedRepresentation") public JAXBElement createDerivedRepresentation(AttributableEmpty value) { return new JAXBElement(_DerivedRepresentation_QNAME, AttributableEmpty.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link PolymorphismModeType }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", name = "PolymorphismMode") public JAXBElement createPolymorphismMode(PolymorphismModeType value) { return new JAXBElement(_PolymorphismMode_QNAME, PolymorphismModeType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", name = "Capability_FaultIncludesCIMError") public JAXBElement createCapabilityFaultIncludesCIMError(Object value) { return new JAXBElement(_CapabilityFaultIncludesCIMError_QNAME, Object.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", name = "Capability_ClassMetadataPathType_EPR") public JAXBElement createCapabilityClassMetadataPathTypeEPR(Object value) { return new JAXBElement(_CapabilityClassMetadataPathTypeEPR_QNAME, Object.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd", name = "Capability_ClassMetadataPathType_URL") public JAXBElement createCapabilityClassMetadataPathTypeURL(Object value) { return new JAXBElement(_CapabilityClassMetadataPathTypeURL_QNAME, Object.class, null, value); } }