de.elnarion.xwiki.rest.model.jaxb.Link Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.04.18 at 06:54:28 PM CEST
//
package de.elnarion.xwiki.rest.model.jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Link complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Link">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="href" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="rel" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="hrefLang" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Link")
public class Link {
@XmlAttribute(name = "href")
protected String href;
@XmlAttribute(name = "rel")
protected String rel;
@XmlAttribute(name = "type")
protected String type;
@XmlAttribute(name = "hrefLang")
protected String hrefLang;
/**
* 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 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 hrefLang property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHrefLang() {
return hrefLang;
}
/**
* Sets the value of the hrefLang property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHrefLang(String value) {
this.hrefLang = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy