1 24 package javax.jcr.query; 25 26 import javax.jcr.ItemExistsException; 27 import javax.jcr.PathNotFoundException; 28 import javax.jcr.RepositoryException; 29 import javax.jcr.nodetype.ConstraintViolationException; 30 31 36 public interface Query { 37 38 44 public QueryResultIterator execute(); 45 46 52 public String getStatement(); 53 54 62 public int getLanguage(); 63 64 70 public String getPersistentQueryPath(); 71 72 84 public void save(String absPath) throws ItemExistsException, PathNotFoundException, ConstraintViolationException, RepositoryException; 85 } 86 | Popular Tags |