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.GroupIdentifier; import org.cagrid.gridgrouper.model.GroupPrivilegeType; /** * <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="group"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://cagrid.nci.nih.gov/1/GridGrouper}GroupIdentifier"/> * </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}GroupPrivilegeType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "group", "subject", "privilege" }) @XmlRootElement(name = "RevokeGroupPrivilegeRequest") public class RevokeGroupPrivilegeRequest implements Serializable { @XmlElement(required = true) protected Group group; @XmlElement(required = true) protected Subject subject; @XmlElement(required = true) protected Privilege privilege; /** * Gets the value of the group property. * * @return * possible object is * {@link org.cagrid.gridgrouper.wsrf.stubs.RevokeGroupPrivilegeRequest.Group } * */ public Group getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.wsrf.stubs.RevokeGroupPrivilegeRequest.Group } * */ public void setGroup(Group value) { this.group = value; } /** * Gets the value of the subject property. * * @return * possible object is * {@link org.cagrid.gridgrouper.wsrf.stubs.RevokeGroupPrivilegeRequest.Subject } * */ public Subject getSubject() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.wsrf.stubs.RevokeGroupPrivilegeRequest.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.RevokeGroupPrivilegeRequest.Privilege } * */ public Privilege getPrivilege() { return privilege; } /** * Sets the value of the privilege property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.wsrf.stubs.RevokeGroupPrivilegeRequest.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}GroupIdentifier"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "groupIdentifier" }) public static class Group implements Serializable { @XmlElement(name = "GroupIdentifier", namespace = "http://cagrid.nci.nih.gov/1/GridGrouper", required = true) protected GroupIdentifier groupIdentifier; /** * Gets the value of the groupIdentifier property. * * @return * possible object is * {@link org.cagrid.gridgrouper.model.GroupIdentifier } * */ public GroupIdentifier getGroupIdentifier() { return groupIdentifier; } /** * Sets the value of the groupIdentifier property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.model.GroupIdentifier } * */ public void setGroupIdentifier(GroupIdentifier value) { this.groupIdentifier = 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}GroupPrivilegeType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "groupPrivilegeType" }) public static class Privilege implements Serializable { @XmlElement(name = "GroupPrivilegeType", namespace = "http://cagrid.nci.nih.gov/1/GridGrouper", required = true) protected GroupPrivilegeType groupPrivilegeType; /** * Gets the value of the groupPrivilegeType property. * * @return * possible object is * {@link org.cagrid.gridgrouper.model.GroupPrivilegeType } * */ public GroupPrivilegeType getGroupPrivilegeType() { return groupPrivilegeType; } /** * Sets the value of the groupPrivilegeType property. * * @param value * allowed object is * {@link org.cagrid.gridgrouper.model.GroupPrivilegeType } * */ public void setGroupPrivilegeType(GroupPrivilegeType value) { this.groupPrivilegeType = 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; } } }