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

nl.vpro.nep.service.NEPUploadService Maven / Gradle / Ivy

There is a newer version: 8.3.1
Show newest version
package nl.vpro.nep.service;

import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Path;

import org.checkerframework.checker.nullness.qual.NonNull;

import nl.vpro.logging.simple.SimpleLogger;

public interface NEPUploadService {


    long upload(
        @NonNull SimpleLogger logger,
        @NonNull String nepFile,
        @NonNull Long size,
        @NonNull Path stream,
        boolean replaces
        ) throws IOException;

     long upload(
        @NonNull SimpleLogger logger,
        @NonNull String nepFile,
        @NonNull Long size,
        @NonNull InputStream stream,
        boolean replaces
        ) throws IOException;


    String getUploadString();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy