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 MemberDescriptor complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="MemberDescriptor"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="UUID" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="SubjectId" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="SubjectName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="MemberType" type="{http://cagrid.nci.nih.gov/1/GridGrouper}MemberType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MemberDescriptor", propOrder = { "uuid", "subjectId", "subjectName", "memberType" }) public class MemberDescriptor implements Serializable { @XmlElement(name = "UUID", required = true) protected String uuid; @XmlElement(name = "SubjectId", required = true) protected String subjectId; @XmlElement(name = "SubjectName", required = true) protected String subjectName; @XmlElement(name = "MemberType", required = true) protected MemberType memberType; /** * Gets the value of the uuid property. * * @return * possible object is * {@link String } * */ public String getUUID() { return uuid; } /** * Sets the value of the uuid property. * * @param value * allowed object is * {@link String } * */ public void setUUID(String value) { this.uuid = value; } /** * Gets the value of the subjectId property. * * @return * possible object is * {@link String } * */ public String getSubjectId() { return subjectId; } /** * Sets the value of the subjectId property. * * @param value * allowed object is * {@link String } * */ public void setSubjectId(String value) { this.subjectId = value; } /** * Gets the value of the subjectName property. * * @return * possible object is * {@link String } * */ public String getSubjectName() { return subjectName; } /** * Sets the value of the subjectName property. * * @param value * allowed object is * {@link String } * */ public void setSubjectName(String value) { this.subjectName = value; } /** * Gets the value of the memberType property. * * @return * possible object is * {@link MemberType } * */ public MemberType getMemberType() { return memberType; } /** * Sets the value of the memberType property. * * @param value * allowed object is * {@link MemberType } * */ public void setMemberType(MemberType value) { this.memberType = value; } }