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 WSExistsTransformerV2 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSExistsTransformerV2"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="wsTransformerV2PK" type="{http://www.talend.com/mdm}WSTransformerV2PK" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSExistsTransformerV2", propOrder = { "wsTransformerV2PK" }) public class WSExistsTransformerV2 { protected WSTransformerV2PK wsTransformerV2PK; /** * Default no-arg constructor * */ public WSExistsTransformerV2() { super(); } /** * Fully-initialising value constructor * */ public WSExistsTransformerV2(final WSTransformerV2PK wsTransformerV2PK) { this.wsTransformerV2PK = wsTransformerV2PK; } /** * Gets the value of the wsTransformerV2PK property. * * @return * possible object is * {@link WSTransformerV2PK } * */ public WSTransformerV2PK getWsTransformerV2PK() { return wsTransformerV2PK; } /** * Sets the value of the wsTransformerV2PK property. * * @param value * allowed object is * {@link WSTransformerV2PK } * */ public void setWsTransformerV2PK(WSTransformerV2PK value) { this.wsTransformerV2PK = value; } }