package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSPutItemWithReport complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSPutItemWithReport"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="invokeBeforeSaving" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="wsPutItem" type="{http://www.talend.com/mdm}WSPutItem" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSPutItemWithReport", propOrder = { "invokeBeforeSaving", "source", "wsPutItem" }) public class WSPutItemWithReport { protected Boolean invokeBeforeSaving; protected String source; protected WSPutItem wsPutItem; /** * Default no-arg constructor * */ public WSPutItemWithReport() { super(); } /** * Fully-initialising value constructor * */ public WSPutItemWithReport(final Boolean invokeBeforeSaving, final String source, final WSPutItem wsPutItem) { this.invokeBeforeSaving = invokeBeforeSaving; this.source = source; this.wsPutItem = wsPutItem; } /** * Gets the value of the invokeBeforeSaving property. * * @return * possible object is * {@link Boolean } * */ public Boolean isInvokeBeforeSaving() { return invokeBeforeSaving; } /** * Sets the value of the invokeBeforeSaving property. * * @param value * allowed object is * {@link Boolean } * */ public void setInvokeBeforeSaving(Boolean value) { this.invokeBeforeSaving = value; } /** * Gets the value of the source property. * * @return * possible object is * {@link String } * */ public String getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is * {@link String } * */ public void setSource(String value) { this.source = value; } /** * Gets the value of the wsPutItem property. * * @return * possible object is * {@link WSPutItem } * */ public WSPutItem getWsPutItem() { return wsPutItem; } /** * Sets the value of the wsPutItem property. * * @param value * allowed object is * {@link WSPutItem } * */ public void setWsPutItem(WSPutItem value) { this.wsPutItem = value; } }