nyla.solutions.global.patterns.search.queryService.finders.AbstractQuestFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.global Show documentation
Show all versions of nyla.solutions.global Show documentation
Nyla Solutions Global Java API provides support for basic application
utilities (application configuration, data encryption, debugger and text
processing).
The newest version!
package nyla.solutions.global.patterns.search.queryService.finders;
import java.util.Collection;
import nyla.solutions.global.data.DataRow;
import nyla.solutions.global.patterns.search.queryService.QuestFinder;
/**
* The quest finder reference implement using an ReLookup
* @author Gregory Green
*
*/
public abstract class AbstractQuestFinder implements QuestFinder
{
/**
*
* @param reLookup the reLookup
*/
public AbstractQuestFinder()
{
}// --------------------------------------------------------
/**
*
* @see java.util.concurrent.Callable#call()
*/
@Override
public Collection call() throws Exception
{
return this.getResults();
}// --------------------------------------------------------
@Override
public void dispose()
{
}// --------------------------------------------------------
}