/* * 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>. */ package org.hibernate.test.hql; /** * TODO : javadoc * * @author Steve Ebersole */ public class VariousKeywordPropertyEntity { private Long id; private String value; private String key; private String entry; private String type; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getEntry() { return entry; } public void setEntry(String entry) { this.entry = entry; } public String getType() { return type; } public void setType(String type) { this.type = type; } }