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 WSPutItem complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSPutItem"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="isUpdate" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="wsDataClusterPK" type="{http://www.talend.com/mdm}WSDataClusterPK" minOccurs="0"/> * <element name="wsDataModelPK" type="{http://www.talend.com/mdm}WSDataModelPK" minOccurs="0"/> * <element name="xmlString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSPutItem", propOrder = { "isUpdate", "wsDataClusterPK", "wsDataModelPK", "xmlString" }) public class WSPutItem { protected Boolean isUpdate; protected WSDataClusterPK wsDataClusterPK; protected WSDataModelPK wsDataModelPK; protected String xmlString; /** * Default no-arg constructor * */ public WSPutItem() { super(); } /** * Fully-initialising value constructor * */ public WSPutItem(final Boolean isUpdate, final WSDataClusterPK wsDataClusterPK, final WSDataModelPK wsDataModelPK, final String xmlString) { this.isUpdate = isUpdate; this.wsDataClusterPK = wsDataClusterPK; this.wsDataModelPK = wsDataModelPK; this.xmlString = xmlString; } /** * Gets the value of the isUpdate property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsUpdate() { return isUpdate; } /** * Sets the value of the isUpdate property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsUpdate(Boolean value) { this.isUpdate = value; } /** * Gets the value of the wsDataClusterPK property. * * @return * possible object is * {@link WSDataClusterPK } * */ public WSDataClusterPK getWsDataClusterPK() { return wsDataClusterPK; } /** * Sets the value of the wsDataClusterPK property. * * @param value * allowed object is * {@link WSDataClusterPK } * */ public void setWsDataClusterPK(WSDataClusterPK value) { this.wsDataClusterPK = value; } /** * Gets the value of the wsDataModelPK property. * * @return * possible object is * {@link WSDataModelPK } * */ public WSDataModelPK getWsDataModelPK() { return wsDataModelPK; } /** * Sets the value of the wsDataModelPK property. * * @param value * allowed object is * {@link WSDataModelPK } * */ public void setWsDataModelPK(WSDataModelPK value) { this.wsDataModelPK = value; } /** * Gets the value of the xmlString property. * * @return * possible object is * {@link String } * */ public String getXmlString() { return xmlString; } /** * Sets the value of the xmlString property. * * @param value * allowed object is * {@link String } * */ public void setXmlString(String value) { this.xmlString = value; } }