argos/dmp-backend/core/src/main/java/eu/eudat/query/lookup/LookupAware.java

13 lines
334 B
Java

package eu.eudat.query.lookup;
public interface LookupAware<Q, L> {
/**
* Every query that supports building from a lookup object should implement this interface
* @param lookup The object containing all the lookup options
* @return The query built from all the set options
*/
Q fromLookup(L lookup);
}