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; import org.cagrid.gridgrouper.model.StemIdentifier; import org.cagrid.gridgrouper.model.StemPrivilegeType; /** * <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="stem"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://cagrid.nci.nih.gov/1/GridGrouper}StemIdentifier"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="subject"> * <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> * <element name="privilege"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://cagrid.nci.nih.gov/1/GridGrouper}StemPrivilegeType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "stem", "subject", "privilege" }) @XmlRootElement(name = "GrantStemPrivilegeRequest") public class GrantStemPrivilegeRequest implements Serializable { @XmlElement(required = true) protected Stem stem; @XmlElement(required = true) protected Subject subject; @XmlElement(required = true) protected Privilege privilege; /** * Gets the value of the stem property. * * @return * possible object is * {@link org.cagrid.gridgrouper.wsrf.stubs.GrantStemPrivilegeRequest.Stem } * */ public Stem getStem() { return stem; } /** * Sets the value of the stem property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.wsrf.stubs.GrantStemPrivilegeRequest.Stem } * */ public void setStem(Stem value) { this.stem = value; } /** * Gets the value of the subject property. * * @return * possible object is * {@link org.cagrid.gridgrouper.wsrf.stubs.GrantStemPrivilegeRequest.Subject } * */ public Subject getSubject() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.wsrf.stubs.GrantStemPrivilegeRequest.Subject } * */ public void setSubject(Subject value) { this.subject = value; } /** * Gets the value of the privilege property. * * @return * possible object is * {@link org.cagrid.gridgrouper.wsrf.stubs.GrantStemPrivilegeRequest.Privilege } * */ public Privilege getPrivilege() { return privilege; } /** * Sets the value of the privilege property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.wsrf.stubs.GrantStemPrivilegeRequest.Privilege } * */ public void setPrivilege(Privilege value) { this.privilege = 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}StemPrivilegeType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "stemPrivilegeType" }) public static class Privilege implements Serializable { @XmlElement(name = "StemPrivilegeType", namespace = "http://cagrid.nci.nih.gov/1/GridGrouper", required = true) protected StemPrivilegeType stemPrivilegeType; /** * Gets the value of the stemPrivilegeType property. * * @return * possible object is * {@link org.cagrid.gridgrouper.model.StemPrivilegeType } * */ public StemPrivilegeType getStemPrivilegeType() { return stemPrivilegeType; } /** * Sets the value of the stemPrivilegeType property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.model.StemPrivilegeType } * */ public void setStemPrivilegeType(StemPrivilegeType value) { this.stemPrivilegeType = 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}StemIdentifier"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "stemIdentifier" }) public static class Stem implements Serializable { @XmlElement(name = "StemIdentifier", namespace = "http://cagrid.nci.nih.gov/1/GridGrouper", required = true) protected StemIdentifier stemIdentifier; /** * Gets the value of the stemIdentifier property. * * @return * possible object is * {@link org.cagrid.gridgrouper.model.StemIdentifier } * */ public StemIdentifier getStemIdentifier() { return stemIdentifier; } /** * Sets the value of the stemIdentifier property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.model.StemIdentifier } * */ public void setStemIdentifier(StemIdentifier value) { this.stemIdentifier = 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 Subject 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; } } }