All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.robothy.s3.rest.utils.InputStreamUtils Maven / Gradle / Ivy

package com.robothy.s3.rest.utils;

import java.io.InputStream;

/**
 * {@linkplain InputStream} utils.
 */
public class InputStreamUtils {

  /**
   * Decode the Aws chunked encoding input stream.
   *
   * @param encoded the checked encoding input stream.
   * @return Decoded input stream.
   */
  public static InputStream decodeAwsChunkedEncodingInputStream(InputStream encoded) {
    return new AwsChunkedDecodingInputStream(encoded);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy