/* * 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: $ package org.hibernate.test.lob; /** * An entity containing data that is materialized into a byte array immediately. * The hibernate type mapped for {@link #longByteArray} determines the SQL type * asctually used. * * @author Gail Badner */ public class LongByteArrayHolder { private Long id; private byte[] longByteArray; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public byte[] getLongByteArray() { return longByteArray; } public void setLongByteArray(byte[] longByteArray) { this.longByteArray = longByteArray; } }