/** * Abiquo community edition * cloud management application for hybrid clouds * Copyright (C) 2008-2010 - Abiquo Holdings S.L. * * This application is free software; you can redistribute it and/or * modify it under the terms of the GNU LESSER GENERAL PUBLIC * LICENSE as published by the Free Software Foundation under * version 3 of the License * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * LESSER GENERAL PUBLIC LICENSE v.3 for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.02.23 at 01:07:44 PM CET // package org.dmtf.schemas.ovf.environment._1; 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.dmtf.schemas.ovf.environment._1 package. * <p>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 _PropertySection_QNAME = new QName("http://schemas.dmtf.org/ovf/environment/1", "PropertySection"); private final static QName _PlatformSection_QNAME = new QName("http://schemas.dmtf.org/ovf/environment/1", "PlatformSection"); private final static QName _Environment_QNAME = new QName("http://schemas.dmtf.org/ovf/environment/1", "Environment"); private final static QName _Section_QNAME = new QName("http://schemas.dmtf.org/ovf/environment/1", "Section"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.dmtf.schemas.ovf.environment._1 * */ public ObjectFactory() { } /** * Create an instance of {@link PropertySectionType } * */ public PropertySectionType createPropertySectionType() { return new PropertySectionType(); } /** * Create an instance of {@link EntityType } * */ public EntityType createEntityType() { return new EntityType(); } /** * Create an instance of {@link PropertySectionType.Property } * */ public PropertySectionType.Property createPropertySectionTypeProperty() { return new PropertySectionType.Property(); } /** * Create an instance of {@link PlatformSectionType } * */ public PlatformSectionType createPlatformSectionType() { return new PlatformSectionType(); } /** * Create an instance of {@link EnvironmentType } * */ public EnvironmentType createEnvironmentType() { return new EnvironmentType(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link PropertySectionType }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/ovf/environment/1", name = "PropertySection", substitutionHeadNamespace = "http://schemas.dmtf.org/ovf/environment/1", substitutionHeadName = "Section") public JAXBElement<PropertySectionType> createPropertySection(PropertySectionType value) { return new JAXBElement<PropertySectionType>(_PropertySection_QNAME, PropertySectionType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link PlatformSectionType }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/ovf/environment/1", name = "PlatformSection", substitutionHeadNamespace = "http://schemas.dmtf.org/ovf/environment/1", substitutionHeadName = "Section") public JAXBElement<PlatformSectionType> createPlatformSection(PlatformSectionType value) { return new JAXBElement<PlatformSectionType>(_PlatformSection_QNAME, PlatformSectionType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link EnvironmentType }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/ovf/environment/1", name = "Environment") public JAXBElement<EnvironmentType> createEnvironment(EnvironmentType value) { return new JAXBElement<EnvironmentType>(_Environment_QNAME, EnvironmentType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link SectionType }{@code >}} * */ @XmlElementDecl(namespace = "http://schemas.dmtf.org/ovf/environment/1", name = "Section") public JAXBElement<SectionType> createSection(SectionType value) { return new JAXBElement<SectionType>(_Section_QNAME, SectionType.class, null, value); } }