// // 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: 2015.07.13 at 12:00:05 PM BRT // package com.ibm.rqm.xml.bind; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <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="projectArea"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute ref="{http://schema.ibm.com/vega/2008/}id"/> * </restriction> * </complexContent> * </complexType> * </element> * <element ref="{http://purl.org/dc/elements/1.1/}identifier"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element ref="{http://purl.org/dc/elements/1.1/}title"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="isExpireable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="expirationdate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="teamarea"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute ref="{http://schema.ibm.com/vega/2008/}id"/> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "projectArea", "identifier", "name", "title", "description", "isExpireable", "startDate", "expirationdate", "teamarea" }) @XmlRootElement(name = "resourcegroup") public class Resourcegroup { @XmlElement(required = true) protected Resourcegroup.ProjectArea projectArea; @XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true) protected String identifier; @XmlElement(required = true) protected String name; @XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true) protected String title; @XmlElement(required = true) protected String description; protected Boolean isExpireable; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startDate; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expirationdate; @XmlElement(required = true) protected Resourcegroup.Teamarea teamarea; /** * Gets the value of the projectArea property. * * @return * possible object is * {@link Resourcegroup.ProjectArea } * */ public Resourcegroup.ProjectArea getProjectArea() { return projectArea; } /** * Sets the value of the projectArea property. * * @param value * allowed object is * {@link Resourcegroup.ProjectArea } * */ public void setProjectArea(Resourcegroup.ProjectArea value) { this.projectArea = value; } /** * [READ-ONLY] The identifier for this resource. A URL is typically provided for this element. * * @return * possible object is * {@link String } * */ public String getIdentifier() { return identifier; } /** * Sets the value of the identifier property. * * @param value * allowed object is * {@link String } * */ public void setIdentifier(String value) { this.identifier = 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 title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the isExpireable property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsExpireable() { return isExpireable; } /** * Sets the value of the isExpireable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsExpireable(Boolean value) { this.isExpireable = value; } /** * Gets the value of the startDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartDate(XMLGregorianCalendar value) { this.startDate = value; } /** * Gets the value of the expirationdate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpirationdate() { return expirationdate; } /** * Sets the value of the expirationdate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpirationdate(XMLGregorianCalendar value) { this.expirationdate = value; } /** * Gets the value of the teamarea property. * * @return * possible object is * {@link Resourcegroup.Teamarea } * */ public Resourcegroup.Teamarea getTeamarea() { return teamarea; } /** * Sets the value of the teamarea property. * * @param value * allowed object is * {@link Resourcegroup.Teamarea } * */ public void setTeamarea(Resourcegroup.Teamarea value) { this.teamarea = 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"> * <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute ref="{http://schema.ibm.com/vega/2008/}id"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class ProjectArea { @XmlAttribute(required = true) @XmlSchemaType(name = "anyURI") protected String href; @XmlAttribute(namespace = "http://schema.ibm.com/vega/2008/") protected String id; /** * Gets the value of the href property. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } /** * [DEPRECATED] [READ-ONLY] * * @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; } } /** * <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"> * <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute ref="{http://schema.ibm.com/vega/2008/}id"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Teamarea { @XmlAttribute(required = true) @XmlSchemaType(name = "anyURI") protected String href; @XmlAttribute(namespace = "http://schema.ibm.com/vega/2008/") protected String id; /** * Gets the value of the href property. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } /** * UUID of the teamarea. * * @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; } } }