io.github.jpmorganchase.fusion.api.operations.APIUploadOperations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusion-sdk Show documentation
Show all versions of fusion-sdk Show documentation
A Java SDK for the Fusion platform API
package io.github.jpmorganchase.fusion.api.operations;
import io.github.jpmorganchase.fusion.api.exception.APICallException;
import java.io.InputStream;
public interface APIUploadOperations {
default void callAPIFileUpload(
String apiPath,
String fileName,
String catalogName,
String dataset,
String fromDate,
String toDate,
String createdDate)
throws APICallException {}
default void callAPIFileUpload(
String apiPath,
InputStream data,
String catalogName,
String dataset,
String fromDate,
String toDate,
String createdDate)
throws APICallException {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy