/* * JBoss, Home of Professional Open Source * Copyright 2009 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a full listing of * individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.io; import java.io.IOException; import java.io.ObjectOutput; /** * An unclosable version of an {@link java.io.ObjectOutput}. This delegates all methods except {@link #flush()} and * {@link #close()}. * * @author Manik Surtani * @since 4.0 */ public class UnclosableObjectOutputStream implements ObjectOutput { private final ObjectOutput delegate; public UnclosableObjectOutputStream(ObjectOutput delegate) { this.delegate = delegate; } @Override public final void writeObject(Object obj) throws IOException { delegate.writeObject(obj); } @Override public final void write(int b) throws IOException { delegate.write(b); } @Override public final void write(byte[] b) throws IOException { delegate.write(b); } @Override public final void write(byte[] b, int off, int len) throws IOException { delegate.write(b, off, len); } @Override public final void writeBoolean(boolean v) throws IOException { delegate.writeBoolean(v); } @Override public final void writeByte(int v) throws IOException { delegate.writeByte(v); } @Override public final void writeShort(int v) throws IOException { delegate.writeShort(v); } @Override public final void writeChar(int v) throws IOException { delegate.writeChar(v); } @Override public final void writeInt(int v) throws IOException { delegate.writeInt(v); } @Override public final void writeLong(long v) throws IOException { delegate.writeLong(v); } @Override public final void writeFloat(float v) throws IOException { delegate.writeFloat(v); } @Override public final void writeDouble(double v) throws IOException { delegate.writeDouble(v); } @Override public final void writeBytes(String s) throws IOException { delegate.writeBytes(s); } @Override public final void writeChars(String s) throws IOException { delegate.writeChars(s); } @Override public final void writeUTF(String str) throws IOException { delegate.writeUTF(str); } @Override public final void flush() throws IOException { throw new UnsupportedOperationException("flush() not supported in an UnclosableObjectOutputStream!"); } @Override public final void close() throws IOException { throw new UnsupportedOperationException("close() not supported in an UnclosableObjectOutputStream!"); } }