package org.openprovenance.prov.sql; import java.util.ArrayList; import java.util.List; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.Table; import javax.persistence.Transient; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder; import org.apache.commons.lang.builder.ToStringBuilder; import org.openprovenance.prov.xml.builder.Equals; import org.openprovenance.prov.xml.builder.HashCode; import org.openprovenance.prov.xml.builder.ToString; import org.openprovenance.prov.xml.builder.JAXBEqualsBuilder; import org.openprovenance.prov.xml.builder.JAXBHashCodeBuilder; import org.openprovenance.prov.xml.builder.JAXBToStringBuilder; import org.openprovenance.prov.model.Attribute; import org.openprovenance.prov.model.QualifiedName; import org.openprovenance.prov.model.Other; import org.openprovenance.prov.model.StatementOrBundle; import org.openprovenance.prov.xml.AttributeList; import org.openprovenance.prov.xml.HasAllAttributes; import org.openprovenance.prov.xml.SortedAttributeList; /** * <p>Java class for Communication complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Communication"> * <complexContent> * <extension base="{http://www.w3.org/ns/prov#}AStatement"> * <sequence> * <element name="informed" type="{http://www.w3.org/ns/prov#}IDRef"/> * <element name="informant" type="{http://www.w3.org/ns/prov#}IDRef"/> * <element ref="{http://www.w3.org/ns/prov#}label" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.w3.org/ns/prov#}type" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.w3.org/ns/prov#}others" maxOccurs="unbounded" minOccurs="0"/> * <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute ref="{http://www.w3.org/ns/prov#}id"/> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Communication", propOrder = { "informed", "informant", "label", // "type", // "others", // "any" "all" }) @Entity(name = "WasInformedBy") @Table(name = "WASINFORMEDBY") public class WasInformedBy extends AStatement implements Equals, HashCode, ToString, org.openprovenance.prov.model.WasInformedBy, HasAllAttributes { @XmlElement(required = true, type = org.openprovenance.prov.sql.IDRef.class) protected org.openprovenance.prov.model.QualifiedName informed; @XmlElement(required = true, type = org.openprovenance.prov.sql.IDRef.class) protected org.openprovenance.prov.model.QualifiedName informant; @XmlElement(type = org.openprovenance.prov.sql.InternationalizedString.class) protected List<org.openprovenance.prov.model.LangString> label; transient protected List<org.openprovenance.prov.model.Type> type; transient protected List<Other> other; @XmlAnyElement protected List<Attribute> all; @XmlAttribute(name = "id", namespace = "http://www.w3.org/ns/prov#") @javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter(QualifiedNameAdapter.class) protected QualifiedName id; /** * Gets the value of the informed property. * * @return * possible object is * {@link org.openprovenance.prov.sql.IDRef } * */ @ManyToOne(targetEntity = org.openprovenance.prov.sql.QualifiedName.class, cascade = { CascadeType.ALL }) @JoinColumn(name = "INFORMED") public org.openprovenance.prov.model.QualifiedName getInformed() { return informed; } /** * Sets the value of the informed property. * * @param value * allowed object is * {@link org.openprovenance.prov.sql.IDRef } * */ public void setInformed(org.openprovenance.prov.model.QualifiedName value) { this.informed = value; } /** * Gets the value of the informant property. * * @return * possible object is * {@link org.openprovenance.prov.sql.IDRef } * */ @ManyToOne(targetEntity = org.openprovenance.prov.sql.QualifiedName.class, cascade = { CascadeType.ALL }) @JoinColumn(name = "INFORMANT") public org.openprovenance.prov.model.QualifiedName getInformant() { return informant; } /** * Sets the value of the informant property. * * @param value * allowed object is * {@link org.openprovenance.prov.sql.IDRef } * */ public void setInformant(org.openprovenance.prov.model.QualifiedName value) { this.informant = value; } /** * Gets the value of the label property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the label property. * * <p> * For example, to add a new item, do as follows: * <pre> * getLabel().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link org.openprovenance.prov.sql.InternationalizedString } * * */ @OneToMany(targetEntity = org.openprovenance.prov.sql.InternationalizedString.class, cascade = { CascadeType.ALL }) @JoinColumn(name = "LABEL_WASINFORMEDBY_PK") public List<org.openprovenance.prov.model.LangString> getLabel() { if (label == null) { label = new ArrayList<org.openprovenance.prov.model.LangString>(); } return this.label; } /** * * */ public void setLabel(List<org.openprovenance.prov.model.LangString> label) { this.label = label; } /** * Gets the value of the type property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the type property. * * <p> * For example, to add a new item, do as follows: * <pre> * getType().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link org.openprovenance.prov.sql.Type } * * */ @OneToMany(targetEntity = org.openprovenance.prov.sql.Type.class, cascade = { CascadeType.ALL }) @JoinColumn(name = "TYPE__WASINFORMEDBY_PK") public List<org.openprovenance.prov.model.Type> getType() { if (type == null) { type=AttributeList.populateKnownAttributes(this,all, org.openprovenance.prov.model.Type.class); } return this.type; } /** * * */ public void setType(List<org.openprovenance.prov.model.Type> type) { this.type = type; } /** * Gets the value of the others property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the others property. * * <p> * For example, to add a new item, do as follows: * <pre> * getOthers().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Other } * * */ @OneToMany(targetEntity = org.openprovenance.prov.sql.Other.class, cascade = { CascadeType.ALL }) @JoinColumn(name = "OTHERS_WASINFORMEDBY_PK") public List<Other> getOther() { if (other == null) { other=AttributeList.populateKnownAttributes(this,all, org.openprovenance.prov.model.Other.class); } return this.other; } /** * * */ public void setOther(List<Other> others) { this.other = others; } /** Gets the List of all attributes * @see org.openprovenance.prov.xml.HasAllAttributes#getAllAttributes() */ @Transient public List<Attribute> getAllAttributes() { if (all == null) { all = new SortedAttributeList<Attribute>(); } return this.all; } /** * Gets the value of the id property. * * @return * possible object is * {@link QualifiedName } * */ @ManyToOne(targetEntity = org.openprovenance.prov.sql.QualifiedName.class, cascade = { CascadeType.ALL }) @JoinColumn(name = "ID") public QualifiedName getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link QualifiedName } * */ public void setId(QualifiedName value) { this.id = value; } public void equals(Object object, EqualsBuilder equalsBuilder) { if (!(object instanceof WasInformedBy)) { equalsBuilder.appendSuper(false); return ; } if (this == object) { return ; } final WasInformedBy that = ((WasInformedBy) object); equalsBuilder.append(this.getInformed(), that.getInformed()); equalsBuilder.append(this.getInformant(), that.getInformant()); equalsBuilder.append(this.getLabel(), that.getLabel()); equalsBuilder.append(this.getType(), that.getType()); equalsBuilder.append(this.getOther(), that.getOther()); equalsBuilder.append(this.getId(), that.getId()); } public boolean equals(Object object) { if (!(object instanceof WasInformedBy)) { return false; } if (this == object) { return true; } final EqualsBuilder equalsBuilder = new JAXBEqualsBuilder(); equals(object, equalsBuilder); return equalsBuilder.isEquals(); } public void hashCode(HashCodeBuilder hashCodeBuilder) { hashCodeBuilder.append(this.getInformed()); hashCodeBuilder.append(this.getInformant()); hashCodeBuilder.append(this.getLabel()); hashCodeBuilder.append(this.getType()); hashCodeBuilder.append(this.getOther()); hashCodeBuilder.append(this.getId()); } public int hashCode() { final HashCodeBuilder hashCodeBuilder = new JAXBHashCodeBuilder(); hashCode(hashCodeBuilder); return hashCodeBuilder.toHashCode(); } public void toString(ToStringBuilder toStringBuilder) { { org.openprovenance.prov.model.QualifiedName theInformed; theInformed = this.getInformed(); toStringBuilder.append("informed", theInformed); } { org.openprovenance.prov.model.QualifiedName theInformant; theInformant = this.getInformant(); toStringBuilder.append("informant", theInformant); } { List<org.openprovenance.prov.model.LangString> theLabel; theLabel = this.getLabel(); toStringBuilder.append("label", theLabel); } { List<org.openprovenance.prov.model.Type> theType; theType = this.getType(); toStringBuilder.append("type", theType); } { List<org.openprovenance.prov.model.Other> theOthers; theOthers = this.getOther(); toStringBuilder.append("others", theOthers); } { org.openprovenance.prov.model.QualifiedName theId; theId = this.getId(); toStringBuilder.append("id", theId); } } public String toString() { final ToStringBuilder toStringBuilder = new JAXBToStringBuilder(this); toString(toStringBuilder); return toStringBuilder.toString(); } @Transient public Kind getKind() { return StatementOrBundle.Kind.PROV_COMMUNICATION; } }