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

org.apache.batchee.jaxb.Partition Maven / Gradle / Ivy

There is a newer version: 2.0.0
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: 2013.08.27 at 09:45:12 AM CEST 
//


package org.apache.batchee.jaxb;

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


/**
 * 

Java class for Partition complex type. *

*

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

*

 * <complexType name="Partition">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice minOccurs="0">
 *           <element name="mapper" type="{http://xmlns.jcp.org/xml/ns/javaee}PartitionMapper"/>
 *           <element name="plan" type="{http://xmlns.jcp.org/xml/ns/javaee}PartitionPlan"/>
 *         </choice>
 *         <element name="collector" type="{http://xmlns.jcp.org/xml/ns/javaee}Collector" minOccurs="0"/>
 *         <element name="analyzer" type="{http://xmlns.jcp.org/xml/ns/javaee}Analyzer" minOccurs="0"/>
 *         <element name="reducer" type="{http://xmlns.jcp.org/xml/ns/javaee}PartitionReducer" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Partition", propOrder = { "mapper", "plan", "collector", "analyzer", "reducer" }) public class Partition { protected PartitionMapper mapper; protected PartitionPlan plan; protected Collector collector; protected Analyzer analyzer; protected PartitionReducer reducer; /** * Gets the value of the mapper property. * * @return possible object is * {@link PartitionMapper } */ public PartitionMapper getMapper() { return mapper; } /** * Sets the value of the mapper property. * * @param value allowed object is * {@link PartitionMapper } */ public void setMapper(PartitionMapper value) { this.mapper = value; } /** * Gets the value of the plan property. * * @return possible object is * {@link PartitionPlan } */ public PartitionPlan getPlan() { return plan; } /** * Sets the value of the plan property. * * @param value allowed object is * {@link PartitionPlan } */ public void setPlan(PartitionPlan value) { this.plan = value; } /** * Gets the value of the collector property. * * @return possible object is * {@link Collector } */ public Collector getCollector() { return collector; } /** * Sets the value of the collector property. * * @param value allowed object is * {@link Collector } */ public void setCollector(Collector value) { this.collector = value; } /** * Gets the value of the analyzer property. * * @return possible object is * {@link Analyzer } */ public Analyzer getAnalyzer() { return analyzer; } /** * Sets the value of the analyzer property. * * @param value allowed object is * {@link Analyzer } */ public void setAnalyzer(Analyzer value) { this.analyzer = value; } /** * Gets the value of the reducer property. * * @return possible object is * {@link PartitionReducer } */ public PartitionReducer getReducer() { return reducer; } /** * Sets the value of the reducer property. * * @param value allowed object is * {@link PartitionReducer } */ public void setReducer(PartitionReducer value) { this.reducer = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy