package org.hibernate.test.annotations.id.sequences.entities; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; /** * @author Lukasz Antoniak (lukasz dot antoniak at gmail dot com) */ @Entity public class HibernateSequenceEntity { @Id @GeneratedValue(strategy = GenerationType.SEQUENCE) private Long id; private String text; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getText() { return text; } public void setText(String text) { this.text = text; } }