1 56 package org.objectstyle.cayenne.query; 57 58 import org.apache.log4j.Level; 59 60 65 public interface Query extends QueryExecutionPlan { 66 67 public static final Level DEFAULT_LOG_LEVEL = Level.INFO; 68 69 74 String getName(); 75 76 81 void setName(String name); 82 83 87 Level getLoggingLevel(); 88 89 void setLoggingLevel(Level level); 90 91 94 Object getRoot(); 96 97 100 void setRoot(Object root); 102 } | Popular Tags |