com.leonarduk.clearcheckbook.processor.ClearCheckBookTaskProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clearcheckbookapi Show documentation
Show all versions of clearcheckbookapi Show documentation
A Java library to access the HTTP developer API for
Clearcheckbook.com, the money management website.
/**
* ClearCheckBookTaskProcessor
*
* @author ${author}
* @since 10-Jul-2016
*/
package com.leonarduk.clearcheckbook.processor;
import java.util.List;
import com.leonarduk.clearcheckbook.ClearcheckbookException;
import com.leonarduk.clearcheckbook.dto.AbstractDataType;
/**
* The Interface ClearCheckBookTaskProcessor.
*
* @param
* the generic type
*/
public interface ClearCheckBookTaskProcessor> {
/**
* Process queue.
*
* @param dataTypeList
* the data type list
* @return the list
* @throws ClearcheckbookException
* the clearcheckbook exception
*/
List processQueue(List dataTypeList) throws ClearcheckbookException;
}