// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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.08.03 at 06:08:32 PM CEST // package eu.fbk.knowledgestore.populator.naf.model; 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 = "lp") public class Lp { @XmlAttribute(name = "name", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String name; @XmlAttribute(name = "version", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String version; @XmlAttribute(name = "timestamp") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String timestamp; @XmlAttribute(name = "beginTimestamp") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String beginTimestamp; @XmlAttribute(name = "endTimestamp") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String endTimestamp; @XmlAttribute(name = "hostname") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String hostname; /** * 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 version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the timestamp property. * * @return * possible object is * {@link String } * */ public String getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value * allowed object is * {@link String } * */ public void setTimestamp(String value) { this.timestamp = value; } /** * Gets the value of the beginTimestamp property. * * @return * possible object is * {@link String } * */ public String getBeginTimestamp() { return beginTimestamp; } /** * Sets the value of the beginTimestamp property. * * @param value * allowed object is * {@link String } * */ public void setBeginTimestamp(String value) { this.beginTimestamp = value; } /** * Gets the value of the endTimestamp property. * * @return * possible object is * {@link String } * */ public String getEndTimestamp() { return endTimestamp; } /** * Sets the value of the endTimestamp property. * * @param value * allowed object is * {@link String } * */ public void setEndTimestamp(String value) { this.endTimestamp = value; } /** * Gets the value of the hostname property. * * @return * possible object is * {@link String } * */ public String getHostname() { return hostname; } /** * Sets the value of the hostname property. * * @param value * allowed object is * {@link String } * */ public void setHostname(String value) { this.hostname = value; } }