/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package eu.espas.cql.trans;

import org.z3950.zing.cql.CQLRelation;

/**
 *
 * @author gathanas
 */
public interface ComplexRelationTransformIF {
    public String getSupportedRelationCQL();
    public String getSupportedRelationSQL();
    public String transformClause(String index, CQLRelation relation, String term)throws CQLProcessingException;
}
