org.openprovenance.prov.sql.WasStartedBy Maven / Gradle / Ivy
Show all versions of prov-sql Show documentation
package org.openprovenance.prov.sql;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import javax.persistence.Basic;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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.Attribute;
import org.openprovenance.prov.model.ProvUtilities;
import org.openprovenance.prov.model.QualifiedName;
import org.openprovenance.prov.model.StatementOrBundle;
import org.openprovenance.prov.xml.AttributeList;
import org.openprovenance.prov.xml.HasAllAttributes;
import org.openprovenance.prov.xml.SortedAttributeList;
/**
* Java class for Start complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Start">
* <complexContent>
* <extension base="{http://www.w3.org/ns/prov#}AStatement">
* <sequence>
* <element name="activity" type="{http://www.w3.org/ns/prov#}IDRef"/>
* <element name="trigger" type="{http://www.w3.org/ns/prov#}IDRef" minOccurs="0"/>
* <element name="starter" type="{http://www.w3.org/ns/prov#}IDRef" minOccurs="0"/>
* <element name="time" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element ref="{http://www.w3.org/ns/prov#}label" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.w3.org/ns/prov#}location" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.w3.org/ns/prov#}role" 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>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Start", propOrder = {
"activity",
"trigger",
"starter",
"time",
"label",
// "location",
// "role",
// "type",
// "others",
// "any"
"all"
})
@Entity(name = "WasStartedBy")
@Table(name = "WASSTARTEDBY")
public class WasStartedBy
extends AStatement
implements Equals, HashCode, ToString, org.openprovenance.prov.model.WasStartedBy, HasAllAttributes
{
@XmlElement(required = true, type = org.openprovenance.prov.sql.IDRef.class)
protected org.openprovenance.prov.model.QualifiedName activity;
@XmlElement(type = org.openprovenance.prov.sql.IDRef.class)
protected org.openprovenance.prov.model.QualifiedName trigger;
@XmlElement(type = org.openprovenance.prov.sql.IDRef.class)
protected org.openprovenance.prov.model.QualifiedName starter;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar time;
@XmlElement(type = org.openprovenance.prov.sql.InternationalizedString.class)
protected List label;
transient protected List location;
transient protected List role;
transient protected List type;
transient protected List other;
@XmlAnyElement
protected List 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 activity property.
*
* @return
* possible object is
* {@link org.openprovenance.prov.sql.IDRef }
*
*/
@ManyToOne(targetEntity = org.openprovenance.prov.sql.QualifiedName.class, cascade = {
CascadeType.ALL
})
@JoinColumn(name = "ACTIVITY")
public org.openprovenance.prov.model.QualifiedName getActivity() {
return activity;
}
/**
* Sets the value of the activity property.
*
* @param value
* allowed object is
* {@link org.openprovenance.prov.sql.IDRef }
*
*/
public void setActivity(org.openprovenance.prov.model.QualifiedName value) {
this.activity = value;
}
/**
* Gets the value of the trigger property.
*
* @return
* possible object is
* {@link org.openprovenance.prov.sql.IDRef }
*
*/
@ManyToOne(targetEntity = org.openprovenance.prov.sql.QualifiedName.class, cascade = {
CascadeType.ALL
})
@JoinColumn(name = "TRIGGER_")
public org.openprovenance.prov.model.QualifiedName getTrigger() {
return trigger;
}
/**
* Sets the value of the trigger property.
*
* @param value
* allowed object is
* {@link org.openprovenance.prov.sql.IDRef }
*
*/
public void setTrigger(org.openprovenance.prov.model.QualifiedName value) {
this.trigger = value;
}
/**
* Gets the value of the starter property.
*
* @return
* possible object is
* {@link org.openprovenance.prov.sql.IDRef }
*
*/
@ManyToOne(targetEntity = org.openprovenance.prov.sql.QualifiedName.class, cascade = {
CascadeType.ALL
})
@JoinColumn(name = "STARTER")
public org.openprovenance.prov.model.QualifiedName getStarter() {
return starter;
}
/**
* Sets the value of the starter property.
*
* @param value
* allowed object is
* {@link org.openprovenance.prov.sql.IDRef }
*
*/
public void setStarter(org.openprovenance.prov.model.QualifiedName value) {
this.starter = value;
}
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
@Transient
public XMLGregorianCalendar getTime() {
return time;
}
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTime(XMLGregorianCalendar value) {
this.time = value;
}
/**
* Gets the value of the label property.
*
*
* 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 set
method for the label property.
*
*
* For example, to add a new item, do as follows:
*
* getLabel().add(newItem);
*
*
*
*
* 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_WASSTARTEDBY_PK")
public List getLabel() {
if (label == null) {
label = new ArrayList();
}
return this.label;
}
/**
*
*
*/
public void setLabel(List label) {
this.label = label;
}
/**
* Gets the value of the location property.
*
*
* 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 set
method for the location property.
*
*
* For example, to add a new item, do as follows:
*
* getLocation().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link org.openprovenance.prov.sql.Location }
*
*
*/
@OneToMany(targetEntity = org.openprovenance.prov.sql.Location.class, cascade = {
CascadeType.ALL
})
@JoinColumn(name = "START_")
public List getLocation() {
if (location == null) {
location=AttributeList.populateKnownAttributes(this,all, org.openprovenance.prov.model.Location.class);
}
return this.location;
}
/**
*
*
*/
public void setLocation(List location) {
this.location = location;
}
/**
* Gets the value of the role property.
*
*
* 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 set
method for the role property.
*
*
* For example, to add a new item, do as follows:
*
* getRole().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link org.openprovenance.prov.sql.Role }
*
*
*/
@OneToMany(targetEntity = org.openprovenance.prov.sql.Role.class, cascade = {
CascadeType.ALL
})
@JoinColumn(name = "ROLE__WASSTARTEDBY_PK")
public List getRole() {
if (role == null) {
role=AttributeList.populateKnownAttributes(this,all, org.openprovenance.prov.model.Role.class);
}
return this.role;
}
/**
*
*
*/
public void setRole(List role) {
this.role = role;
}
/**
* Gets the value of the type property.
*
*
* 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 set
method for the type property.
*
*
* For example, to add a new item, do as follows:
*
* getType().add(newItem);
*
*
*
*
* 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__WASSTARTEDBY_PK")
public List getType() {
if (type == null) {
type=AttributeList.populateKnownAttributes(this,all, org.openprovenance.prov.model.Type.class);
}
return this.type;
}
/**
*
*
*/
public void setType(List type) {
this.type = type;
}
/**
* Gets the value of the others property.
*
*
* 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 set
method for the others property.
*
*
* For example, to add a new item, do as follows:
*
* getOthers().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Other }
*
*
*/
@OneToMany(targetEntity = Other.class, cascade = {
CascadeType.ALL
})
@JoinColumn(name = "OTHERS_WASSTARTEDBY_PK")
public List getOther() {
if (other == null) {
other=AttributeList.populateKnownAttributes(this,all, org.openprovenance.prov.model.Other.class);
}
return this.other;
}
/**
*
*
*/
public void setOther(List others) {
this.other = others;
}
/** Gets the List of all attributes
* @see org.openprovenance.prov.xml.HasAllAttributes#getAllAttributes()
*/
@Transient
public List getAllAttributes() {
if (all == null) {
all = new SortedAttributeList();
}
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;
}
@Basic
@Column(name = "TIMEITEM")
@Temporal(TemporalType.TIMESTAMP)
public Date getTimeItem() {
return ProvUtilities.toDate(this.getTime());
}
public void setTimeItem(Date target) {
setTime(ProvUtilities.toXMLGregorianCalendar(target));
}
public void equals(Object object, EqualsBuilder equalsBuilder) {
if (!(object instanceof WasStartedBy)) {
equalsBuilder.appendSuper(false);
return ;
}
if (this == object) {
return ;
}
final WasStartedBy that = ((WasStartedBy) object);
equalsBuilder.append(this.getActivity(), that.getActivity());
equalsBuilder.append(this.getTrigger(), that.getTrigger());
equalsBuilder.append(this.getStarter(), that.getStarter());
equalsBuilder.append(this.getTime(), that.getTime());
equalsBuilder.append(this.getLabel(), that.getLabel());
equalsBuilder.append(this.getLocation(), that.getLocation());
equalsBuilder.append(this.getRole(), that.getRole());
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 WasStartedBy)) {
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.getActivity());
hashCodeBuilder.append(this.getTrigger());
hashCodeBuilder.append(this.getStarter());
hashCodeBuilder.append(this.getTime());
hashCodeBuilder.append(this.getLabel());
hashCodeBuilder.append(this.getLocation());
hashCodeBuilder.append(this.getRole());
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 theActivity;
theActivity = this.getActivity();
toStringBuilder.append("activity", theActivity);
}
{
org.openprovenance.prov.model.QualifiedName theTrigger;
theTrigger = this.getTrigger();
toStringBuilder.append("trigger", theTrigger);
}
{
org.openprovenance.prov.model.QualifiedName theStarter;
theStarter = this.getStarter();
toStringBuilder.append("starter", theStarter);
}
{
XMLGregorianCalendar theTime;
theTime = this.getTime();
toStringBuilder.append("time", theTime);
}
{
List theLabel;
theLabel = this.getLabel();
toStringBuilder.append("label", theLabel);
}
{
List theLocation;
theLocation = this.getLocation();
toStringBuilder.append("location", theLocation);
}
{
List theRole;
theRole = this.getRole();
toStringBuilder.append("role", theRole);
}
{
List theType;
theType = this.getType();
toStringBuilder.append("type", theType);
}
{
List 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_START;
}
}