1 24 package javax.jcr.query; 25 26 import javax.jcr.RepositoryException; 27 28 34 public interface QueryManager { 35 36 48 public Query createQuery(String statement, int language) throws InvalidQueryException, RepositoryException; 49 50 60 public Query getQuery(String absPath) throws InvalidQueryException, RepositoryException; 61 62 68 public int[] getSupportedQueryLanguages(); 69 } 70 | Popular Tags |