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

com.robothy.s3.rest.model.request.DecodedAmzRequestBody Maven / Gradle / Ivy

package com.robothy.s3.rest.model.request;

import java.io.InputStream;
import lombok.Data;

/**
 * Decoded Amazon request body.
 */
@Data
public class DecodedAmzRequestBody {

  /**
   * Represents decoded input stream.
   */
  private InputStream decodedBody;

  /**
   * Represents decoded content length.
   */
  private long decodedContentLength;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy