1 package tests.jfun.models;2 3 import java.util.List ;4 5 public interface MyBeanDao{6 Named getBeanById(int id);7 List getBeans();8 }