01: /*
02: * Created on 26-Apr-2005
03: *
04: */
05: package com.jofti.core;
06:
07: import java.util.Map;
08:
09: import com.jofti.api.IndexQuery;
10: import com.jofti.exception.JoftiException;
11:
12: /**
13: *
14: *
15: * The engine interface that runs the Query against a specific index instance.<p>
16: *
17: * @author Steve Woodcock (steve@jofti.com)
18: * @version 1.0
19: */
20: public interface IQueryEngine {
21:
22: public Map query(IndexQuery query, InternalIndex index)
23: throws JoftiException;
24: }
|