@SequenceGenerator(name="test.domain.ActorIdGenerator", sequenceName="actor_actor_id_seq")@Id @GeneratedValue(strategy=SEQUENCE, generator="test.domain.ActorIdGenerator")
@Column(name="actor_id", unique=true, nullable=false)
public Integer getActorId() {
return this.actorId;
}