001    // Copyright 2009 by Basil Vandegriend.  All rights reserved.
002    
003    package com.basilv.examples.spring;
004    
005    import java.util.Set;
006    
007    public interface ResumeRepository
008    {
009      Set<Resume> findAll();
010    }