1 10 package mondrian.olap; 11 12 23 public abstract class MondrianServer { 24 private static MondrianServer instance = new MondrianServerImpl(); 25 26 30 public static MondrianServer forConnection(Connection connection) { 31 Util.discard(connection); 34 return instance; 35 } 36 37 45 public abstract void flushSchemaCache(); 46 47 59 public abstract void flushDataCache(); 60 61 64 public abstract MondrianVersion getVersion(); 65 66 69 public interface MondrianVersion { 70 73 String getVersionString(); 74 } 75 } 76 77 | Popular Tags |