/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License, version 2 as published by the Free Software * Foundation. * * You should have received a copy of the GNU General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/gpl-2.0.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program 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 General Public License for more details. * * * Copyright 2006 - 2016 Pentaho Corporation. All rights reserved. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2013.07.25 at 11:25:28 AM EDT // package org.pentaho.platform.plugin.services.importexport.exportManifest.bindings; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for jobScheduleRequest complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="jobScheduleRequest"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="actionClass" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="complexJobTrigger" type="{http://www.pentaho.com/schema/}complexJobTriggerProxy" * minOccurs="0"/> * <element ref="{http://www.pentaho.com/schema/}cronJobTrigger" minOccurs="0"/> * <element name="duration" type="{http://www.w3.org/2001/XMLSchema}long"/> * <element name="inputFile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="jobName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="jobParameters" type="{http://www.pentaho.com/schema/}jobScheduleParam" * maxOccurs="unbounded" minOccurs="0"/> * <element name="outputFile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element ref="{http://www.pentaho.com/schema/}simpleJobTrigger" minOccurs="0"/> * <element name="timeZone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="jobId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType( XmlAccessType.FIELD ) @XmlType( name = "jobScheduleRequest", propOrder = { "actionClass", "complexJobTrigger", "cronJobTrigger", "duration", "inputFile", "jobName", "jobParameters", "outputFile", "simpleJobTrigger", "timeZone", "jobId" } ) public class JobScheduleRequest { protected String actionClass; protected ComplexJobTriggerProxy complexJobTrigger; @XmlElement( namespace = "http://www.pentaho.com/schema/" ) protected CronJobTrigger cronJobTrigger; protected long duration; protected String inputFile; protected String jobName; protected String jobId; @XmlElement( nillable = true ) protected List<JobScheduleParam> jobParameters; protected String outputFile; @XmlElement( namespace = "http://www.pentaho.com/schema/" ) protected SimpleJobTrigger simpleJobTrigger; protected String timeZone; /** * Gets the value of the actionClass property. * * @return possible object is {@link String } * */ public String getActionClass() { return actionClass; } /** * Sets the value of the actionClass property. * * @param value * allowed object is {@link String } * */ public void setActionClass( String value ) { this.actionClass = value; } /** * Gets the value of the complexJobTrigger property. * * @return possible object is {@link ComplexJobTriggerProxy } * */ public ComplexJobTriggerProxy getComplexJobTrigger() { return complexJobTrigger; } /** * Sets the value of the complexJobTrigger property. * * @param value * allowed object is {@link ComplexJobTriggerProxy } * */ public void setComplexJobTrigger( ComplexJobTriggerProxy value ) { this.complexJobTrigger = value; } /** * Gets the value of the cronJobTrigger property. * * @return possible object is {@link CronJobTrigger } * */ public CronJobTrigger getCronJobTrigger() { return cronJobTrigger; } /** * Sets the value of the cronJobTrigger property. * * @param value * allowed object is {@link CronJobTrigger } * */ public void setCronJobTrigger( CronJobTrigger value ) { this.cronJobTrigger = value; } /** * Gets the value of the duration property. * */ public long getDuration() { return duration; } /** * Sets the value of the duration property. * */ public void setDuration( long value ) { this.duration = value; } /** * Gets the value of the inputFile property. * * @return possible object is {@link String } * */ public String getInputFile() { return inputFile; } /** * Sets the value of the inputFile property. * * @param value * allowed object is {@link String } * */ public void setInputFile( String value ) { this.inputFile = value; } /** * Gets the value of the jobName property. * * @return possible object is {@link String } * */ public String getJobName() { return jobName; } /** * Sets the value of the jobName property. * * @param value * allowed object is {@link String } * */ public void setJobName( String value ) { this.jobName = value; } /** * Gets the value of the jobParameters property. * * <p> * This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to * the returned list will be present inside the JAXB object. This is why there is not a <CODE>set</CODE> method for * the jobParameters property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getJobParameters().add( newItem ); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list {@link JobScheduleParam } * * */ public List<JobScheduleParam> getJobParameters() { if ( jobParameters == null ) { jobParameters = new ArrayList<JobScheduleParam>(); } return this.jobParameters; } /** * Gets the value of the outputFile property. * * @return possible object is {@link String } * */ public String getOutputFile() { return outputFile; } /** * Sets the value of the outputFile property. * * @param value * allowed object is {@link String } * */ public void setOutputFile( String value ) { this.outputFile = value; } /** * Gets the value of the simpleJobTrigger property. * * @return possible object is {@link SimpleJobTrigger } * */ public SimpleJobTrigger getSimpleJobTrigger() { return simpleJobTrigger; } /** * Sets the value of the simpleJobTrigger property. * * @param value * allowed object is {@link SimpleJobTrigger } * */ public void setSimpleJobTrigger( SimpleJobTrigger value ) { this.simpleJobTrigger = value; } /** * Gets the value of the timeZone property. * * @return possible object is {@link String } * */ public String getTimeZone() { return timeZone; } /** * Sets the value of the timeZone property. * * @param value * allowed object is {@link String } * */ public void setTimeZone( String value ) { this.timeZone = value; } public String getJobId() { return jobId; } public void setJobId( String jobId ) { this.jobId = jobId; } }