com.ibm.rqm.xml.bind.Contributor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of demoiselle-behave-integration-alm Show documentation
Show all versions of demoiselle-behave-integration-alm Show documentation
Demoiselle Behave Integration - ALM
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See http://java.sun.com/xml/jaxb
// 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;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://purl.org/dc/elements/1.1/}identifier"/>
* <element ref="{http://purl.org/dc/elements/1.1/}title"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="userid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element ref="{http://jazz.net/xmlns/alm/v0.1/}updated"/>
* <element name="emailaddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* <attribute ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}resource"/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"identifier",
"title",
"name",
"userid",
"updated",
"emailaddress"
})
@XmlRootElement(name = "contributor")
public class Contributor {
@XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true)
protected String identifier;
@XmlElement(namespace = "http://purl.org/dc/elements/1.1/", required = true)
protected String title;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String userid;
@XmlElement(namespace = "http://jazz.net/xmlns/alm/v0.1/", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar updated;
@XmlElement(required = true)
protected String emailaddress;
@XmlAttribute(namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
@XmlSchemaType(name = "anyURI")
protected String resource;
/**
* [READ-ONLY] An unambiguous reference to the contributor within a given context.
*
* @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;
}
/**
* [READ-ONLY] A name given to the contributor.
*
* @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 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 userid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserid() {
return userid;
}
/**
* Sets the value of the userid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserid(String value) {
this.userid = value;
}
/**
* [READ-ONLY] XML datetime of the last udate to the contributor.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getUpdated() {
return updated;
}
/**
* Sets the value of the updated property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setUpdated(XMLGregorianCalendar value) {
this.updated = value;
}
/**
* Gets the value of the emailaddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmailaddress() {
return emailaddress;
}
/**
* Sets the value of the emailaddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmailaddress(String value) {
this.emailaddress = value;
}
/**
* [READ-ONLY] The Jazz Team Server (JTS) URL of the contributor.
*
* @return
* possible object is
* {@link String }
*
*/
public String getResource() {
return resource;
}
/**
* Sets the value of the resource property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResource(String value) {
this.resource = value;
}
}