nl.vpro.nep.service.NEPUploadService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-nep Show documentation
Show all versions of media-nep Show documentation
Support for the several APIs of NEP that POMS is integrating with
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