/* SVN FILE: $Id: AllowedNumPart.java 5084 2012-09-13 14:49:56Z jvuccolo $ */ package edu.psu.iam.cpr.utility.beans; import java.io.Serializable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; /** * * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivs 3.0 United States License. To * view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/3.0/us/ or send a letter to Creative * Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. * * @package edu.psu.iam.cpr.core.database.beans * @author $Author: jvuccolo $ * @version $Rev: 5084 $ * @lastrevision $Date: 2012-09-13 10:49:56 -0400 (Thu, 13 Sep 2012) $ */ @Entity @Table(name="allowed_num_part") public class AllowedNumPart implements Serializable { /** Contains the serialized UID */ private static final long serialVersionUID = 1L; /** Contains the numPart. */ @Id @Column(name="num_part", nullable=false) private Long numPart; /** * Constructor */ public AllowedNumPart() { super(); } /** * @return the numPart */ public Long getNumPart() { return numPart; } /** * @param numPart the numPart to set. */ public void setNumPart(Long numPart) { this.numPart = numPart; } }