1 13 package info.magnolia.cms.core.search; 14 15 import javax.jcr.Node; 16 import javax.jcr.RepositoryException; 17 import javax.jcr.query.InvalidQueryException; 18 19 20 24 25 public interface QueryManager { 26 27 38 Query createQuery(String statement, String language) throws InvalidQueryException, RepositoryException; 39 40 52 Query getQuery(Node node) throws InvalidQueryException, RepositoryException; 53 54 63 String [] getSupportedQueryLanguages() throws RepositoryException; 64 65 } 66 | Popular Tags |