001// ***************************************************************************************************************************
002// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
003// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
004// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
005// * with the License.  You may obtain a copy of the License at                                                              *
006// *                                                                                                                         *
007// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
008// *                                                                                                                         *
009// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
010// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
011// * specific language governing permissions and limitations under the License.                                              *
012// ***************************************************************************************************************************
013package org.apache.juneau.internal;
014
015import java.io.*;
016
017/**
018 * Wraps an existing {@link OutputStream} where the {@link #close()} method is a no-op.
019 *
020 * <p>
021 * Useful in cases where you're working with streams that should not be implicitly closed.
022 */
023public final class NoCloseOutputStream extends OutputStream {
024
025   private final OutputStream os;
026
027   /**
028    * Constructor.
029    *
030    * @param os The output stream to wrap.
031    */
032   public NoCloseOutputStream(OutputStream os) {
033      this.os = os;
034   }
035
036   @Override /* OutputStream */
037   public void write(int b) throws IOException {
038      os.write(b);
039   }
040
041   @Override /* OutputStream */
042   public void write(byte[] b) throws IOException {
043      os.write(b);
044   }
045
046   @Override /* OutputStream */
047   public void write(byte[] b, int off, int len) throws IOException {
048      os.write(b, off, len);
049   }
050
051   @Override /* OutputStream */
052   public void flush() throws IOException {
053      os.flush();
054   }
055
056   @Override /* OutputStream */
057   public void close() throws IOException {
058      os.flush();
059   }
060}