2014-11-03 15:16:04 -08:00
|
|
|
package org.whispersystems.textsecure.api.messages;
|
|
|
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
|
|
|
public class TextSecureAttachmentStream extends TextSecureAttachment {
|
|
|
|
|
|
|
|
private final InputStream inputStream;
|
|
|
|
private final long length;
|
|
|
|
|
|
|
|
public TextSecureAttachmentStream(InputStream inputStream, String contentType, long length) {
|
|
|
|
super(contentType);
|
|
|
|
this.inputStream = inputStream;
|
|
|
|
this.length = length;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isStream() {
|
2014-11-04 15:01:32 -08:00
|
|
|
return true;
|
2014-11-03 15:16:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isPointer() {
|
2014-11-04 15:01:32 -08:00
|
|
|
return false;
|
2014-11-03 15:16:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public InputStream getInputStream() {
|
|
|
|
return inputStream;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getLength() {
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
}
|