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