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 StemPrivilege complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StemPrivilege"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="StemName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="PrivilegeType" type="{http://cagrid.nci.nih.gov/1/GridGrouper}StemPrivilegeType"/> * <element name="Subject" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="ImplementationClass" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="IsRevokable" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * <element name="Owner" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StemPrivilege", propOrder = { "stemName", "privilegeType", "subject", "implementationClass", "isRevokable", "owner" }) public class StemPrivilege implements Serializable { @XmlElement(name = "StemName", required = true) protected String stemName; @XmlElement(name = "PrivilegeType", required = true) protected StemPrivilegeType privilegeType; @XmlElement(name = "Subject", required = true) protected String subject; @XmlElement(name = "ImplementationClass", required = true) protected String implementationClass; @XmlElement(name = "IsRevokable") protected boolean isRevokable; @XmlElement(name = "Owner", required = true) protected String owner; /** * Gets the value of the stemName property. * * @return * possible object is * {@link String } * */ public String getStemName() { return stemName; } /** * Sets the value of the stemName property. * * @param value * allowed object is * {@link String } * */ public void setStemName(String value) { this.stemName = value; } /** * Gets the value of the privilegeType property. * * @return * possible object is * {@link StemPrivilegeType } * */ public StemPrivilegeType getPrivilegeType() { return privilegeType; } /** * Sets the value of the privilegeType property. * * @param value * allowed object is * {@link StemPrivilegeType } * */ public void setPrivilegeType(StemPrivilegeType value) { this.privilegeType = value; } /** * Gets the value of the subject property. * * @return * possible object is * {@link String } * */ public String getSubject() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link String } * */ public void setSubject(String value) { this.subject = value; } /** * Gets the value of the implementationClass property. * * @return * possible object is * {@link String } * */ public String getImplementationClass() { return implementationClass; } /** * Sets the value of the implementationClass property. * * @param value * allowed object is * {@link String } * */ public void setImplementationClass(String value) { this.implementationClass = value; } /** * Gets the value of the isRevokable property. * */ public boolean isIsRevokable() { return isRevokable; } /** * Sets the value of the isRevokable property. * */ public void setIsRevokable(boolean value) { this.isRevokable = value; } /** * Gets the value of the owner property. * * @return * possible object is * {@link String } * */ public String getOwner() { return owner; } /** * Sets the value of the owner property. * * @param value * allowed object is * {@link String } * */ public void setOwner(String value) { this.owner = value; } }