1 25 package org.objectweb.easybeans.tests.common.ejbs.entity.customer; 26 27 import java.io.Serializable ; 28 29 import javax.persistence.Entity; 30 import javax.persistence.Id; 31 32 38 @Entity 39 public class Category implements Serializable { 40 41 44 private static final long serialVersionUID = 812769477498625155L; 45 46 49 private long id; 50 51 54 private String description; 55 56 60 public String getDescription() { 61 return description; 62 } 63 64 68 public void setDescription(final String description) { 69 this.description = description; 70 } 71 72 76 @Id 77 public long getId() { 78 return id; 79 } 80 81 85 public void setId(final long id) { 86 this.id = id; 87 } 88 89 } 90 | Popular Tags |