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

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

There is a newer version: 1.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vIBM 2.2.3-11/28/2011 06:21 AM(foreman)- 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.03.18 at 06:45:00 PM EDT 
//


package com.ibm.jbatch.jsl.model;

import javax.annotation.Generated;
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" }) @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public class Partition { @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") protected PartitionMapper mapper; @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") protected PartitionPlan plan; @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") protected Collector collector; @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") protected Analyzer analyzer; @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") protected PartitionReducer reducer; /** * Gets the value of the mapper property. * * @return * possible object is * {@link PartitionMapper } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public PartitionMapper getMapper() { return mapper; } /** * Sets the value of the mapper property. * * @param value * allowed object is * {@link PartitionMapper } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public void setMapper(PartitionMapper value) { this.mapper = value; } /** * Gets the value of the plan property. * * @return * possible object is * {@link PartitionPlan } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public PartitionPlan getPlan() { return plan; } /** * Sets the value of the plan property. * * @param value * allowed object is * {@link PartitionPlan } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public void setPlan(PartitionPlan value) { this.plan = value; } /** * Gets the value of the collector property. * * @return * possible object is * {@link Collector } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public Collector getCollector() { return collector; } /** * Sets the value of the collector property. * * @param value * allowed object is * {@link Collector } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public void setCollector(Collector value) { this.collector = value; } /** * Gets the value of the analyzer property. * * @return * possible object is * {@link Analyzer } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public Analyzer getAnalyzer() { return analyzer; } /** * Sets the value of the analyzer property. * * @param value * allowed object is * {@link Analyzer } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public void setAnalyzer(Analyzer value) { this.analyzer = value; } /** * Gets the value of the reducer property. * * @return * possible object is * {@link PartitionReducer } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public PartitionReducer getReducer() { return reducer; } /** * Sets the value of the reducer property. * * @param value * allowed object is * {@link PartitionReducer } * */ @Generated(value = "com.ibm.jtc.jax.tools.xjc.Driver", date = "2013-03-18T06:45:00-04:00", comments = "JAXB RI v2.2.3-11/28/2011 06:21 AM(foreman)-") public void setReducer(PartitionReducer value) { this.reducer = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy