org.whispersystems.signalservice.api.util.StreamDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signal-service-java Show documentation
Show all versions of signal-service-java Show documentation
Signal Service communication library for Java
package org.whispersystems.signalservice.api.util;
import java.io.InputStream;
public class StreamDetails {
private final InputStream stream;
private final String contentType;
private final long length;
public StreamDetails(InputStream stream, String contentType, long length) {
this.stream = stream;
this.contentType = contentType;
this.length = length;
}
public InputStream getStream() {
return stream;
}
public String getContentType() {
return contentType;
}
public long getLength() {
return length;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy