/* * CompensationRulePersistentEjb.java */ package com.unifiedwebservices.humanresources.persistence; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; /** * * @author Keith Sheppard */ @Entity(name="COMPENSATION_RULE") public class CompensationRulePersistentEjb implements Serializable { /** * Holds value of property id. */ private long id; /** * Getter for property id. * @return Value of property id. */ @Id @GeneratedValue public long getId() { return this.id; } /** * Setter for property id. * @param id New value of property id. */ public void setId(long id) { this.id = id; } }