package org.cagrid.gridgrouper.model; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for StemUpdate complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StemUpdate"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="DisplayExtension" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StemUpdate", propOrder = { "displayExtension", "description" }) public class StemUpdate implements Serializable { @XmlElement(name = "DisplayExtension") protected String displayExtension; @XmlElement(name = "Description") protected String description; /** * Gets the value of the displayExtension property. * * @return * possible object is * {@link String } * */ public String getDisplayExtension() { return displayExtension; } /** * Sets the value of the displayExtension property. * * @param value * allowed object is * {@link String } * */ public void setDisplayExtension(String value) { this.displayExtension = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }