com.clickntap.tool.jdbc.JdbcBlobber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Stripecube Show documentation
Show all versions of Stripecube Show documentation
Stripecube is an open source Java framework for Web Applications
package com.clickntap.tool.jdbc;
import java.util.List;
import org.springframework.web.multipart.MultipartFile;
public interface JdbcBlobber {
public void update(Object object, MultipartFile multipartFile, List scripts, JdbcManager jdbcManager) throws Exception;
}