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

net.sf.esfinge.querybuilder.finder.FinderManager Maven / Gradle / Ivy

Go to download

The Esfinge QueryBuilder JDBC is the persistence framework for Esfinge QueryBuilder using JDBC.

The newest version!
package net.sf.esfinge.querybuilder.finder;

public class FinderManager {
	private IFindable finder;

	public FinderManager(IFindable finder) {
		setFinder(finder);
	}

	public void setFinder(IFindable finder) {
		this.finder = finder;
	}

	public String find(String KeySearch) {
		String result = finder.search(KeySearch);
		return result;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy