package com.rapidminer.deployment.client.wsimport; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for getAvailableVersions complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="getAvailableVersions"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="packageId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="targetPlatform" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "getAvailableVersions", propOrder = { "packageId", "targetPlatform" }) public class GetAvailableVersions { protected String packageId; protected String targetPlatform; /** * Gets the value of the packageId property. * * @return * possible object is * {@link String } * */ public String getPackageId() { return packageId; } /** * Sets the value of the packageId property. * * @param value * allowed object is * {@link String } * */ public void setPackageId(String value) { this.packageId = value; } /** * Gets the value of the targetPlatform property. * * @return * possible object is * {@link String } * */ public String getTargetPlatform() { return targetPlatform; } /** * Sets the value of the targetPlatform property. * * @param value * allowed object is * {@link String } * */ public void setTargetPlatform(String value) { this.targetPlatform = value; } }