// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.08.02 at 09:18:52 PM BST // package net.sf.mpxj.planner.schema; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "group") public class Group { @XmlAttribute(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String id; @XmlAttribute(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String name; @XmlAttribute(name = "admin-name") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String adminName; @XmlAttribute(name = "admin-email") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String adminEmail; @XmlAttribute(name = "admin-phone") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String adminPhone; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = 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; } /** * Gets the value of the adminName property. * * @return * possible object is * {@link String } * */ public String getAdminName() { return adminName; } /** * Sets the value of the adminName property. * * @param value * allowed object is * {@link String } * */ public void setAdminName(String value) { this.adminName = value; } /** * Gets the value of the adminEmail property. * * @return * possible object is * {@link String } * */ public String getAdminEmail() { return adminEmail; } /** * Sets the value of the adminEmail property. * * @param value * allowed object is * {@link String } * */ public void setAdminEmail(String value) { this.adminEmail = value; } /** * Gets the value of the adminPhone property. * * @return * possible object is * {@link String } * */ public String getAdminPhone() { return adminPhone; } /** * Sets the value of the adminPhone property. * * @param value * allowed object is * {@link String } * */ public void setAdminPhone(String value) { this.adminPhone = value; } }