package fi.otavanopisto.muikku.plugins.data.model; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.validation.constraints.NotNull; import org.hibernate.validator.constraints.NotEmpty; @Entity public class ProcessedScript { public Long getId() { return id; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @NotNull @NotEmpty @Column(nullable = false, unique = true) private String url; }