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

fi.foyt.fni.persistence.model.materials.ImageRevision Maven / Gradle / Ivy

There is a newer version: 3.3.13
Show newest version
package fi.foyt.fni.persistence.model.materials;

import javax.persistence.Entity;
import javax.persistence.ManyToOne;
import javax.persistence.PrimaryKeyJoinColumn;

@Entity
@PrimaryKeyJoinColumn (name="id")
public class ImageRevision extends MaterialRevision {
  
  public Image getImage() {
    return image;
  }
  
  public void setImage(Image image) {
    this.image = image;
  }

  @ManyToOne
  private Image image;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy