/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ //$Id: Paper.java 8048 2005-08-30 21:27:17Z epbernard $ package org.hibernate.test.stateless; /** * @author Emmanuel Bernard */ public class Paper { private Integer id; private String color; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getColor() { return color; } public void setColor(String color) { this.color = color; } }