// // 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 java.util.ArrayList; import java.util.List; 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.XmlElements; 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 = "", propOrder = { "sentiment","externalRef" }) @XmlRootElement(name = "externalRef") public class ExternalRef { @XmlAttribute(name = "resource") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String resource; @XmlAttribute(name = "reference", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String reference; @XmlAttribute(name = "reftype") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String reftype; @XmlAttribute(name = "status") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String status; @XmlAttribute(name = "source") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String source; @XmlAttribute(name = "confidence") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String confidence; @XmlElement(name = "externalRef", type = ExternalRef.class) protected List<ExternalRef> externalRef; @XmlElement(name = "sentiment", type = Sentiment.class) protected List<Sentiment> sentiment; /** * Gets the value of the resource property. * * @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; } /** * Gets the value of the reference property. * * @return * possible object is * {@link String } * */ public String getReference() { return reference; } /** * Sets the value of the reference property. * * @param value * allowed object is * {@link String } * */ public void setReference(String value) { this.reference = value; } /** * Gets the value of the reftype property. * * @return * possible object is * {@link String } * */ public String getReftype() { return reftype; } /** * Sets the value of the reftype property. * * @param value * allowed object is * {@link String } * */ public void setReftype(String value) { this.reftype = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the source property. * * @return * possible object is * {@link String } * */ public String getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is * {@link String } * */ public void setSource(String value) { this.source = value; } /** * Gets the value of the confidence property. * * @return * possible object is * {@link String } * */ public String getConfidence() { return confidence; } /** * Sets the value of the confidence property. * * @param value * allowed object is * {@link String } * */ public void setConfidence(String value) { this.confidence = value; } public List<ExternalRef> getExternalRef() { return externalRef; } public void setExternalRef(List<ExternalRef> externalRef) { this.externalRef = externalRef; } public List<Sentiment> getSentiment() { return sentiment; } public void setSentiment(List<Sentiment> sentiment) { this.sentiment = sentiment; } }