woko.ext.blobs.BlobObject Maven / Gradle / Ivy
package woko.ext.blobs;
import java.io.InputStream;
public interface BlobObject {
Long getId();
String getFileName();
long getContentLength();
String getContentType();
InputStream getInputStream();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy