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

nyla.solutions.global.patterns.search.queryService.finders.AbstractQuestFinder Maven / Gradle / Ivy

Go to download

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()
	{
		
	}// -------------------------------------------------------- 
	


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy