// // 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: 2013.10.25 at 12:13:33 AM EDT // package gov.nih.ncgc.bard.capextract.jaxb; import java.io.Serializable; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <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="type" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="application/vnd.bard.cap+xml;type=experiments"/> * <enumeration value="application/vnd.bard.cap+xml;type=experiment"/> * <enumeration value="application/vnd.bard.cap+xml;type=results"/> * <enumeration value="application/vnd.bard.cap+xml;type=result"/> * <enumeration value="application/vnd.bard.cap+xml;type=cap"/> * <enumeration value="application/vnd.bard.cap+xml;type=resultType"/> * <enumeration value="application/vnd.bard.cap+xml;type=assays"/> * <enumeration value="application/vnd.bard.cap+xml;type=assay"/> * <enumeration value="application/vnd.bard.cap+xml;type=dictionary"/> * <enumeration value="application/vnd.bard.cap+xml;type=bardexport"/> * <enumeration value="application/vnd.bard.cap+xml;type=stage"/> * <enumeration value="application/vnd.bard.cap+xml;type=element"/> * <enumeration value="application/vnd.bard.cap+xml;type=projects"/> * <enumeration value="application/vnd.bard.cap+xml;type=project"/> * <enumeration value="application/vnd.bard.cap+xml;type=assayDoc"/> * <enumeration value="application/vnd.bard.cap+xml;type=externalReferences"/> * <enumeration value="application/vnd.bard.cap+xml;type=externalReference"/> * <enumeration value="application/vnd.bard.cap+xml;type=externalSystems"/> * <enumeration value="application/vnd.bard.cap+xml;type=externalSystem"/> * <enumeration value="application/vnd.bard.cap+xml;type=projectDoc"/> * <enumeration value="application/json;type=results"/> * </restriction> * </simpleType> * </attribute> * <attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="rel" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="related"/> * <enumeration value="edit"/> * <enumeration value="up"/> * <enumeration value="next"/> * <enumeration value="item"/> * <enumeration value="self"/> * <enumeration value="collection"/> * </restriction> * </simpleType> * </attribute> * <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "link") public class Link implements Serializable { @XmlAttribute(required = true) protected String type; @XmlAttribute(required = true) @XmlSchemaType(name = "anyURI") protected String href; @XmlAttribute(required = true) protected String rel; @XmlAttribute protected String title; /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * 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; } /** * Gets the value of the rel property. * * @return * possible object is * {@link String } * */ public String getRel() { return rel; } /** * Sets the value of the rel property. * * @param value * allowed object is * {@link String } * */ public void setRel(String value) { this.rel = 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; } }