package com.coverity.ws.v9; 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 groupIdDataObj complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="groupIdDataObj"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="domain" type="{http://ws.coverity.com/v9}serverDomainIdDataObj" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "groupIdDataObj", propOrder = { "displayName", "domain", "name" }) public class GroupIdDataObj { protected String displayName; protected ServerDomainIdDataObj domain; @XmlElement(required = true) protected String name; /** * Gets the value of the displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ public void setDisplayName(String value) { this.displayName = value; } /** * Gets the value of the domain property. * * @return * possible object is * {@link ServerDomainIdDataObj } * */ public ServerDomainIdDataObj getDomain() { return domain; } /** * Sets the value of the domain property. * * @param value * allowed object is * {@link ServerDomainIdDataObj } * */ public void setDomain(ServerDomainIdDataObj value) { this.domain = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } }