package com.k_int.srusolr.util;

import java.util.Map;
import com.k_int.srusolr.action.GeneralQueryModel;

public interface SolrIndexConverter {
  /**
   * Converts from the given string in an implementation specific format
   * to one or more sets of key-value pairs to be used in the solr query.
   */
  public Map<String, String> convert(String from, GeneralQueryModel gqm); 
}
