fi.foyt.fni.persistence.model.materials.VectorImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of persistence Show documentation
Show all versions of persistence Show documentation
Forge & Illusion - Persistence
package fi.foyt.fni.persistence.model.materials;
import javax.persistence.Cacheable;
import javax.persistence.Entity;
import javax.persistence.Lob;
import javax.persistence.PrimaryKeyJoinColumn;
import org.hibernate.annotations.Cache;
import org.hibernate.annotations.CacheConcurrencyStrategy;
import org.hibernate.search.annotations.Indexed;
@Entity
@PrimaryKeyJoinColumn (name="id")
@Cacheable (true)
@Cache (usage = CacheConcurrencyStrategy.TRANSACTIONAL)
@Indexed
public class VectorImage extends Material {
public VectorImage() {
setType(MaterialType.VECTOR_IMAGE);
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
@Lob
private String data;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy