AccountSearchRepository.java 310 Bytes
package org.legrog.entities;

import java.util.List;

/**
 *
 */
public interface AccountSearchRepository {
    /**
     *
     * @param string String searched in indexed Accounts
     * @return Accounts that match the string
     */
    List<IndexedAccount> search(String string) throws SearchingException;
}