package org.cagrid.gridgrouper.wsrf.stubs; 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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="member"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://cagrid.nci.nih.gov/1/GridGrouper}SubjectIdentifier"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "member" }) @XmlRootElement(name = "GetMemberRequest") public class GetMemberRequest implements Serializable { @XmlElement(required = true) protected Member member; /** * Gets the value of the member property. * * @return * possible object is * {@link org.cagrid.gridgrouper.wsrf.stubs.GetMemberRequest.Member } * */ public Member getMember() { return member; } /** * Sets the value of the member property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.wsrf.stubs.GetMemberRequest.Member } * */ public void setMember(Member value) { this.member = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://cagrid.nci.nih.gov/1/GridGrouper}SubjectIdentifier"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "subjectIdentifier" }) public static class Member implements Serializable { @XmlElement(name = "SubjectIdentifier", namespace = "http://cagrid.nci.nih.gov/1/GridGrouper", required = true) protected String subjectIdentifier; /** * Gets the value of the subjectIdentifier property. * * @return * possible object is * {@link String } * */ public String getSubjectIdentifier() { return subjectIdentifier; } /** * Sets the value of the subjectIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setSubjectIdentifier(String value) { this.subjectIdentifier = value; } } }