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

org.apache.cxf.tools.plugin.FrontEnd Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.04.08 at 05:30:04 PM MDT 
//


package org.apache.cxf.tools.plugin;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for FrontEnd complex type. * *

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

 * <complexType name="FrontEnd">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="generators" type="{http://cxf.apache.org/tools/plugin}Generators"/>
 *         <element name="processor" type="{http://cxf.apache.org/tools/plugin}Processor"/>
 *         <element name="container" type="{http://cxf.apache.org/tools/plugin}Container"/>
 *         <element name="builder" type="{http://cxf.apache.org/tools/plugin}Builder"/>
 *       </sequence>
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="package" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="profile" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FrontEnd", propOrder = { "generators", "processor", "container", "builder" }) public class FrontEnd { @XmlElement(required = true) protected Generators generators; @XmlElement(required = true) protected Processor processor; @XmlElement(required = true) protected Container container; @XmlElement(required = true) protected Builder builder; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "package", required = true) protected String _package; @XmlAttribute(name = "profile", required = true) protected String profile; /** * Gets the value of the generators property. * * @return * possible object is * {@link Generators } * */ public Generators getGenerators() { return generators; } /** * Sets the value of the generators property. * * @param value * allowed object is * {@link Generators } * */ public void setGenerators(Generators value) { this.generators = value; } /** * Gets the value of the processor property. * * @return * possible object is * {@link Processor } * */ public Processor getProcessor() { return processor; } /** * Sets the value of the processor property. * * @param value * allowed object is * {@link Processor } * */ public void setProcessor(Processor value) { this.processor = value; } /** * Gets the value of the container property. * * @return * possible object is * {@link Container } * */ public Container getContainer() { return container; } /** * Sets the value of the container property. * * @param value * allowed object is * {@link Container } * */ public void setContainer(Container value) { this.container = value; } /** * Gets the value of the builder property. * * @return * possible object is * {@link Builder } * */ public Builder getBuilder() { return builder; } /** * Sets the value of the builder property. * * @param value * allowed object is * {@link Builder } * */ public void setBuilder(Builder value) { this.builder = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the package property. * * @return * possible object is * {@link String } * */ public String getPackage() { return _package; } /** * Sets the value of the package property. * * @param value * allowed object is * {@link String } * */ public void setPackage(String value) { this._package = value; } /** * Gets the value of the profile property. * * @return * possible object is * {@link String } * */ public String getProfile() { return profile; } /** * Sets the value of the profile property. * * @param value * allowed object is * {@link String } * */ public void setProfile(String value) { this.profile = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy