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 WSDeleteItem complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSDeleteItem"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="invokeBeforeDeleting" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="override" 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="withReport" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="wsItemPK" type="{http://www.talend.com/mdm}WSItemPK" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSDeleteItem", propOrder = { "invokeBeforeDeleting", "override", "source", "withReport", "wsItemPK" }) public class WSDeleteItem { protected Boolean invokeBeforeDeleting; protected Boolean override; protected String source; protected Boolean withReport; protected WSItemPK wsItemPK; /** * Default no-arg constructor * */ public WSDeleteItem() { super(); } /** * Fully-initialising value constructor * */ public WSDeleteItem(final Boolean invokeBeforeDeleting, final Boolean override, final String source, final Boolean withReport, final WSItemPK wsItemPK) { this.invokeBeforeDeleting = invokeBeforeDeleting; this.override = override; this.source = source; this.withReport = withReport; this.wsItemPK = wsItemPK; } /** * Gets the value of the invokeBeforeDeleting property. * * @return * possible object is * {@link Boolean } * */ public Boolean isInvokeBeforeDeleting() { return invokeBeforeDeleting; } /** * Sets the value of the invokeBeforeDeleting property. * * @param value * allowed object is * {@link Boolean } * */ public void setInvokeBeforeDeleting(Boolean value) { this.invokeBeforeDeleting = value; } /** * Gets the value of the override property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOverride() { return override; } /** * Sets the value of the override property. * * @param value * allowed object is * {@link Boolean } * */ public void setOverride(Boolean value) { this.override = 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 withReport property. * * @return * possible object is * {@link Boolean } * */ public Boolean isWithReport() { return withReport; } /** * Sets the value of the withReport property. * * @param value * allowed object is * {@link Boolean } * */ public void setWithReport(Boolean value) { this.withReport = value; } /** * Gets the value of the wsItemPK property. * * @return * possible object is * {@link WSItemPK } * */ public WSItemPK getWsItemPK() { return wsItemPK; } /** * Sets the value of the wsItemPK property. * * @param value * allowed object is * {@link WSItemPK } * */ public void setWsItemPK(WSItemPK value) { this.wsItemPK = value; } }