[hibernate-commits] Hibernate SVN: r18004 - in core/trunk/core/src/main/java/org/hibernate: lob and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Nov 18 11:35:28 EST 2009


Author: smarlow at redhat.com
Date: 2009-11-18 11:35:28 -0500 (Wed, 18 Nov 2009)
New Revision: 18004

Added:
   core/trunk/core/src/main/java/org/hibernate/lob/
   core/trunk/core/src/main/java/org/hibernate/lob/ReaderInputStream.java
Log:
HHH-4588 workaround for JBSEAM-4474

Added: core/trunk/core/src/main/java/org/hibernate/lob/ReaderInputStream.java
===================================================================
--- core/trunk/core/src/main/java/org/hibernate/lob/ReaderInputStream.java	                        (rev 0)
+++ core/trunk/core/src/main/java/org/hibernate/lob/ReaderInputStream.java	2009-11-18 16:35:28 UTC (rev 18004)
@@ -0,0 +1,45 @@
+/*
+ * Hibernate, Relational Persistence for Idiomatic Java
+ *
+ * Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ * indicated by the @author tags or express copyright attribution
+ * statements applied by the authors.  All third-party contributions are
+ * distributed under license by Red Hat Middleware LLC.
+ *
+ * This copyrighted material is made available to anyone wishing to use, modify,
+ * copy, or redistribute it subject to the terms and conditions of the GNU
+ * Lesser General Public License, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this distribution; if not, write to:
+ * Free Software Foundation, Inc.
+ * 51 Franklin Street, Fifth Floor
+ * Boston, MA  02110-1301  USA
+ *
+ */
+package org.hibernate.lob;
+
+import java.io.IOException;
+import java.io.Reader;
+
+/**
+ * Exposes a {@link java.io.Reader} as an {@link java.io.InputStream}.
+ *
+ * @deprecated Should not be used anymore. 
+ */
+public class ReaderInputStream extends org.hibernate.engine.jdbc.ReaderInputStream {
+
+	public ReaderInputStream(Reader reader) {
+		super(reader);
+	}
+
+	public int read() throws IOException {
+		return super.read();
+	}
+
+}
\ No newline at end of file



More information about the hibernate-commits mailing list