package com.rapid_i.repository.wsimport; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for executeProcessWithOffset complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="executeProcessWithOffset"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="processLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="executionTime" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="processContext" type="{http://service.web.rapidanalytics.de/}processContextWrapper" minOccurs="0"/> * <element name="queueName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "executeProcessWithOffset", propOrder = { "processLocation", "executionTime", "processContext", "queueName" }) public class ExecuteProcessWithOffset { protected String processLocation; protected Long executionTime; protected ProcessContextWrapper processContext; protected String queueName; /** * Gets the value of the processLocation property. * * @return * possible object is * {@link String } * */ public String getProcessLocation() { return processLocation; } /** * Sets the value of the processLocation property. * * @param value * allowed object is * {@link String } * */ public void setProcessLocation(String value) { this.processLocation = value; } /** * Gets the value of the executionTime property. * * @return * possible object is * {@link Long } * */ public Long getExecutionTime() { return executionTime; } /** * Sets the value of the executionTime property. * * @param value * allowed object is * {@link Long } * */ public void setExecutionTime(Long value) { this.executionTime = value; } /** * Gets the value of the processContext property. * * @return * possible object is * {@link ProcessContextWrapper } * */ public ProcessContextWrapper getProcessContext() { return processContext; } /** * Sets the value of the processContext property. * * @param value * allowed object is * {@link ProcessContextWrapper } * */ public void setProcessContext(ProcessContextWrapper value) { this.processContext = value; } /** * Gets the value of the queueName property. * * @return * possible object is * {@link String } * */ public String getQueueName() { return queueName; } /** * Sets the value of the queueName property. * * @param value * allowed object is * {@link String } * */ public void setQueueName(String value) { this.queueName = value; } }