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

kz.greetgo.file_storage.impl.MonoDbOperations Maven / Gradle / Ivy

package kz.greetgo.file_storage.impl;

import kz.greetgo.file_storage.errors.NoFileWithId;

public interface MonoDbOperations {
  String createNew(byte[] data, CreateNewParams params) throws DatabaseNotPrepared;

  void prepareDatabase(DatabaseNotPrepared context);

  FileParams readParams(String fileId);

  byte[] getDataAsArray(String sha1sum);

  void delete(String fileId) throws NoFileWithId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy