1package example.xml; 2 3public interface Contacts { 4 Iterable<Contact> findByName(String name); 5} 6