1 package org.prevayler.demos.scalability;2 3 import java.util.List ;4 5 public interface QueryConnection {6 7 /** Returns the List of all Record with the given name.8 */9 public List queryByName(String name);10 11 }12