package org.springframework.samples.petclinic; import java.io.Serializable; /** * Simple JavaBean domain object with an id property. * Used as a base class for objects needing this property. * * @author Ken Krebs * @author Juergen Hoeller */ public class Entity implements Serializable { private Integer id; public void setId(Integer id) { this.id = id; } public Integer getId() { return id; } public boolean isNew() { return (this.id == null); } }