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

woko.ext.blobs.BlobStore Maven / Gradle / Ivy

There is a newer version: 2.4-beta7
Show newest version
package woko.ext.blobs;

import java.io.InputStream;

public interface BlobStore {

    String KEY = "BlobStore";

    BlobObject save(InputStream inputStream, String fileName, String contentType, long length, BlobObject blob);

    BlobObject getBlob(Class blobClass, Long id);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy