mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 21:20:45 +00:00
added headers to make checkstyle happy
This commit is contained in:
@ -14,10 +14,23 @@ import com.kingsrook.qqq.backend.core.model.metadata.QTableMetaData;
|
|||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public interface QDataSource
|
public interface QDataSource
|
||||||
|
|
||||||
{
|
{
|
||||||
|
/*******************************************************************************
|
||||||
|
** listAvailableBatches
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
List<String> listAvailableBatches();
|
List<String> listAvailableBatches();
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** getBatch
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
QDataBatch getBatch(String identity, QTableMetaData destination) throws QException;
|
QDataBatch getBatch(String identity, QTableMetaData destination) throws QException;
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** discardBatch
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
void discardBatch(QDataBatch batch);
|
void discardBatch(QDataBatch batch);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user