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

org.whispersystems.signalservice.internal.push.PushAttachmentData Maven / Gradle / Ivy

There is a newer version: 2.15.3_unofficial_107
Show newest version
/**
 * Copyright (C) 2014-2016 Open Whisper Systems
 *
 * Licensed according to the LICENSE file in this repository.
 */

package org.whispersystems.signalservice.internal.push;

import org.whispersystems.signalservice.api.messages.SignalServiceAttachment.ProgressListener;
import org.whispersystems.signalservice.internal.push.http.CancelationSignal;
import org.whispersystems.signalservice.internal.push.http.OutputStreamFactory;
import org.whispersystems.signalservice.internal.push.http.ResumableUploadSpec;

import java.io.InputStream;

public class PushAttachmentData {

  private final String                  contentType;
  private final InputStream             data;
  private final long                    dataSize;
  private final OutputStreamFactory     outputStreamFactory;
  private final ProgressListener        listener;
  private final CancelationSignal       cancelationSignal;
  private final ResumableUploadSpec     resumableUploadSpec;

  public PushAttachmentData(String contentType, InputStream data, long dataSize,
                            OutputStreamFactory outputStreamFactory,
                            ProgressListener listener, CancelationSignal cancelationSignal,
                            ResumableUploadSpec resumableUploadSpec)
  {
    this.contentType             = contentType;
    this.data                    = data;
    this.dataSize                = dataSize;
    this.outputStreamFactory     = outputStreamFactory;
    this.resumableUploadSpec     = resumableUploadSpec;
    this.listener                = listener;
    this.cancelationSignal       = cancelationSignal;
  }

  public String getContentType() {
    return contentType;
  }

  public InputStream getData() {
    return data;
  }

  public long getDataSize() {
    return dataSize;
  }

  public OutputStreamFactory getOutputStreamFactory() {
    return outputStreamFactory;
  }

  public ProgressListener getListener() {
    return listener;
  }

  public CancelationSignal getCancelationSignal() {
    return cancelationSignal;
  }

  public ResumableUploadSpec getResumableUploadSpec() {
    return resumableUploadSpec;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy