com.belladati.sdk.dataset.source.DataSourceImport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-api Show documentation
Show all versions of sdk-api Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.
package com.belladati.sdk.dataset.source;
import java.util.Date;
/**
* A single execution of an import from a data source to a data set as set on
* the server.
*
* @author Chris Hennigfeld
*/
public interface DataSourceImport extends DataSourceImportBase {
/**
* Returns the date and time on which this import will be executed next.
*
* @return the date and time on which this import will be executed next
*/
Date getNextExecutionDate();
/**
* Returns the name of the user who triggered this import.
*
* @return the name of the user who triggered this import
*/
String getCallerName();
}