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

org.kuali.common.impex.service.DataHandler Maven / Gradle / Ivy

package org.kuali.common.impex.service;

import java.io.File;
import java.io.IOException;

import org.kuali.common.impex.DumpTableContext;

public interface DataHandler {

	void startData(DumpTableContext context) throws IOException;

	void doData(DumpTableContext context) throws IOException;

	void finishData(DumpTableContext context) throws IOException;

	File getFileForTable(ImpexContext context, String tableName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy