com.mntviews.mnt.bridge.file.service.BridgePlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mnt-bridge-file Show documentation
Show all versions of mnt-bridge-file Show documentation
Worker-queue implementation for uploading files to the databases using native mechanisms like
sqlldr,pg_dump ...
package com.mntviews.mnt.bridge.file.service;
import com.mntviews.mnt.bridge.file.service.impl.BridgePluginImpl;
public interface BridgePlugin {
String SCRIPT_URL_PARAM = "scriptUrl";
static BridgePluginImpl.Builder> custom() {
return new BridgePluginImpl.Builder<>();
}
}