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