/* * 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: Item.java 4407 2004-08-22 01:20:08Z oneovthafew $ package org.hibernate.test.interfaceproxy; /** * @author Gavin King */ public interface Item { /** * @return Returns the id. */ public Long getId(); /** * @return Returns the name. */ public String getName(); /** * @param name The name to set. */ public void setName(String name); }