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 GroupIdentifier complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GroupIdentifier"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="gridGrouperURL" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="GroupName" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GroupIdentifier", propOrder = { "gridGrouperURL", "groupName" }) public class GroupIdentifier implements Serializable { @XmlElement(required = true) protected String gridGrouperURL; @XmlElement(name = "GroupName", required = true) protected String groupName; /** * Gets the value of the gridGrouperURL property. * * @return * possible object is * {@link String } * */ public String getGridGrouperURL() { return gridGrouperURL; } /** * Sets the value of the gridGrouperURL property. * * @param value * allowed object is * {@link String } * */ public void setGridGrouperURL(String value) { this.gridGrouperURL = value; } /** * Gets the value of the groupName property. * * @return * possible object is * {@link String } * */ public String getGroupName() { return groupName; } /** * Sets the value of the groupName property. * * @param value * allowed object is * {@link String } * */ public void setGroupName(String value) { this.groupName = value; } }