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

jaxb.com.ibm.jbatch.jsl.model.Partition Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2020.04.05 at 01:05:36 PM EDT 
//


package com.ibm.jbatch.jsl.model;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.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="{https://jakarta.ee/xml/ns/jakartaee}PartitionMapper"/>
 *           <element name="plan" type="{https://jakarta.ee/xml/ns/jakartaee}PartitionPlan"/>
 *         </choice>
 *         <element name="collector" type="{https://jakarta.ee/xml/ns/jakartaee}Collector" minOccurs="0"/>
 *         <element name="analyzer" type="{https://jakarta.ee/xml/ns/jakartaee}Analyzer" minOccurs="0"/>
 *         <element name="reducer" type="{https://jakarta.ee/xml/ns/jakartaee}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