// // 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.XmlID; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) @XmlRootElement(name = "wf") public class Wf { @XmlAttribute(name = "id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; @XmlAttribute(name = "sent") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String sent; @XmlAttribute(name = "para") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String para; @XmlAttribute(name = "page") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String page; @XmlAttribute(name = "offset", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String offset; @XmlAttribute(name = "length", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String length; @XmlAttribute(name = "xpath") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String xpath; @XmlValue protected String value; /** * Gets the value of the id property. * * @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; } /** * Gets the value of the sent property. * * @return * possible object is * {@link String } * */ public String getSent() { return sent; } /** * Sets the value of the sent property. * * @param value * allowed object is * {@link String } * */ public void setSent(String value) { this.sent = value; } /** * Gets the value of the para property. * * @return * possible object is * {@link String } * */ public String getPara() { return para; } /** * Sets the value of the para property. * * @param value * allowed object is * {@link String } * */ public void setPara(String value) { this.para = value; } /** * Gets the value of the page property. * * @return * possible object is * {@link String } * */ public String getPage() { return page; } /** * Sets the value of the page property. * * @param value * allowed object is * {@link String } * */ public void setPage(String value) { this.page = value; } /** * Gets the value of the offset property. * * @return * possible object is * {@link String } * */ public String getOffset() { return offset; } /** * Sets the value of the offset property. * * @param value * allowed object is * {@link String } * */ public void setOffset(String value) { this.offset = value; } /** * Gets the value of the length property. * * @return * possible object is * {@link String } * */ public String getLength() { return length; } /** * Sets the value of the length property. * * @param value * allowed object is * {@link String } * */ public void setLength(String value) { this.length = value; } /** * Gets the value of the xpath property. * * @return * possible object is * {@link String } * */ public String getXpath() { return xpath; } /** * Sets the value of the xpath property. * * @param value * allowed object is * {@link String } * */ public void setXpath(String value) { this.xpath = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getvalue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setvalue(String value) { this.value = value; } }