All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openprovenance.prov.sql.MentionOf Maven / Gradle / Ivy

Go to download

Java Objects representing the PROV model, XML serialiser/deserialiser for them, and ORM mapping generated by HyperJaxb.

There is a newer version: 1.0.0
Show newest version
package org.openprovenance.prov.sql;

import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
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.XmlElement;
import javax.xml.bind.annotation.XmlType;

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.apache.commons.lang.builder.EqualsBuilder;
import org.openprovenance.apache.commons.lang.builder.HashCodeBuilder;
import org.openprovenance.apache.commons.lang.builder.ToStringBuilder;
import org.openprovenance.prov.model.StatementOrBundle;


/**
 * 

Java class for Mention complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Mention">
 *   <complexContent>
 *     <extension base="{http://www.w3.org/ns/prov#}AStatement">
 *       <sequence>
 *         <element name="specificEntity" type="{http://www.w3.org/ns/prov#}IDRef"/>
 *         <element name="generalEntity" type="{http://www.w3.org/ns/prov#}IDRef"/>
 *         <element name="bundle" type="{http://www.w3.org/ns/prov#}IDRef"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Mention", propOrder = { "specificEntity", "generalEntity", "bundle" }) @Entity(name = "MentionOf") @Table(name = "MENTIONOF") public class MentionOf extends AStatement implements Equals, HashCode, ToString, org.openprovenance.prov.model.MentionOf { @XmlElement(required = true, type = org.openprovenance.prov.sql.IDRef.class) protected org.openprovenance.prov.model.QualifiedName specificEntity; @XmlElement(required = true, type = org.openprovenance.prov.sql.IDRef.class) protected org.openprovenance.prov.model.QualifiedName generalEntity; @XmlElement(required = true, type = org.openprovenance.prov.sql.IDRef.class) protected org.openprovenance.prov.model.QualifiedName bundle; /** * Gets the value of the specificEntity property. * * @return * possible object is * {@link org.openprovenance.prov.sql.IDRef } * */ @ManyToOne(targetEntity = org.openprovenance.prov.sql.QualifiedName.class, cascade = { CascadeType.ALL }) @JoinColumn(name = "SPECIFICENTITY_MENTIONOF_PK") public org.openprovenance.prov.model.QualifiedName getSpecificEntity() { return specificEntity; } /** * Sets the value of the specificEntity property. * * @param value * allowed object is * {@link org.openprovenance.prov.sql.IDRef } * */ public void setSpecificEntity(org.openprovenance.prov.model.QualifiedName value) { this.specificEntity = value; } /** * Gets the value of the generalEntity property. * * @return * possible object is * {@link org.openprovenance.prov.sql.IDRef } * */ @ManyToOne(targetEntity = org.openprovenance.prov.sql.QualifiedName.class, cascade = { CascadeType.ALL }) @JoinColumn(name = "GENERALENTITY_MENTIONOF_PK") public org.openprovenance.prov.model.QualifiedName getGeneralEntity() { return generalEntity; } /** * Sets the value of the generalEntity property. * * @param value * allowed object is * {@link org.openprovenance.prov.sql.IDRef } * */ public void setGeneralEntity(org.openprovenance.prov.model.QualifiedName value) { this.generalEntity = value; } /** * Gets the value of the bundle property. * * @return * possible object is * {@link org.openprovenance.prov.sql.IDRef } * */ @ManyToOne(targetEntity = org.openprovenance.prov.sql.QualifiedName.class, cascade = { CascadeType.ALL }) @JoinColumn(name = "BUNDLE") public org.openprovenance.prov.model.QualifiedName getBundle() { return bundle; } /** * Sets the value of the bundle property. * * @param value * allowed object is * {@link org.openprovenance.prov.sql.IDRef } * */ public void setBundle(org.openprovenance.prov.model.QualifiedName value) { this.bundle = value; } public void equals(Object object, EqualsBuilder equalsBuilder) { if (!(object instanceof MentionOf)) { equalsBuilder.appendSuper(false); return ; } if (this == object) { return ; } final MentionOf that = ((MentionOf) object); equalsBuilder.append(this.getSpecificEntity(), that.getSpecificEntity()); equalsBuilder.append(this.getGeneralEntity(), that.getGeneralEntity()); equalsBuilder.append(this.getBundle(), that.getBundle()); } public boolean equals(Object object) { if (!(object instanceof MentionOf)) { 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.getSpecificEntity()); hashCodeBuilder.append(this.getGeneralEntity()); hashCodeBuilder.append(this.getBundle()); } public int hashCode() { final HashCodeBuilder hashCodeBuilder = new JAXBHashCodeBuilder(); hashCode(hashCodeBuilder); return hashCodeBuilder.toHashCode(); } public void toString(ToStringBuilder toStringBuilder) { { org.openprovenance.prov.model.QualifiedName theSpecificEntity; theSpecificEntity = this.getSpecificEntity(); toStringBuilder.append("specificEntity", theSpecificEntity); } { org.openprovenance.prov.model.QualifiedName theGeneralEntity; theGeneralEntity = this.getGeneralEntity(); toStringBuilder.append("generalEntity", theGeneralEntity); } { org.openprovenance.prov.model.QualifiedName theBundle; theBundle = this.getBundle(); toStringBuilder.append("bundle", theBundle); } } public String toString() { final ToStringBuilder toStringBuilder = new JAXBToStringBuilder(this); toString(toStringBuilder); return toStringBuilder.toString(); } @Transient public Kind getKind() { return StatementOrBundle.Kind.PROV_MENTION; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy