package fi.otavanopisto.muikku.plugins.communicator.model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class CommunicatorMessageId { public Long getId() { return id; } @Id @GeneratedValue (strategy = GenerationType.IDENTITY) private Long id; }