1 5 package com.jofti.config; 6 7 import java.util.List ; 8 import java.util.Map ; 9 import java.util.Properties ; 10 11 12 25 public interface IndexConfig { 26 27 32 public String getName(); 33 34 38 public String getCacheAdapter(); 39 40 45 public Map getIndexMappings(); 46 47 51 public Map getQueryMappings(); 52 53 59 public void addMapping(String clazz, List propertyList); 60 61 62 68 public void addQuery(String name, String query); 69 70 71 75 public String getIndexType(); 76 77 public boolean isLazyLoaded(); 78 79 83 public Properties getAdapterProperties(); 84 85 89 public String getParserType(); 90 91 public Properties getIndexProperties(); 92 93 94 95 96 } 97 | Popular Tags |