001 package org.tynamo.jpa.sample.domain;
002
003 import javax.persistence.Entity;
004 import javax.persistence.GeneratedValue;
005 import javax.persistence.Id;
006
007 /**
008 * @author Piero Sartini
009 */
010 @Entity
011 public class TestEntity {
012 @Id @GeneratedValue
013 private long id;
014 private String value;
015
016 public TestEntity() {}
017
018 public long getId() {
019 return id;
020 }
021
022 public void setId(long id) {
023 this.id = id;
024 }
025
026 public String getValue() {
027 return value;
028 }
029
030 public void setValue(String value) {
031 this.value = value;
032 }
033 }