package org.aksw.sparqlify.admin.model; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class TextResource extends ResourceBase { @Id @GeneratedValue(strategy=GenerationType.IDENTITY) private Integer id; private String type; // logical type private String format; // mime type / physical type @Column(columnDefinition = "varchar(4194304)") private String data; public TextResource() { } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getFormat() { return format; } public void setFormat(String format) { this.format = format; } public String getData() { return data; } public void setData(String data) { this.data = data; } @Override public String toString() { return "TextResource [id=" + id + ", type=" + type + ", format=" + format + ", data=" + data + "]"; } @Override public int hashCode() { final int prime = 31; int result = super.hashCode(); result = prime * result + ((data == null) ? 0 : data.hashCode()); result = prime * result + ((format == null) ? 0 : format.hashCode()); result = prime * result + id; result = prime * result + ((type == null) ? 0 : type.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (!super.equals(obj)) return false; if (getClass() != obj.getClass()) return false; TextResource other = (TextResource) obj; if (data == null) { if (other.data != null) return false; } else if (!data.equals(other.data)) return false; if (format == null) { if (other.format != null) return false; } else if (!format.equals(other.format)) return false; if (id != other.id) return false; if (type == null) { if (other.type != null) return false; } else if (!type.equals(other.type)) return false; return true; } }