In Program Management glossary 0, we said we should name interfaces that return arrays with the Search
prefix:
Search<something>
Interfaces named Search have one method that returns an array of objects. They may return an empty array [].
They are named after the convention of naming methods search<Something>() in Data Access Objects.
There are a couple of interfaces that don't respect this naming scheme. Changing their name will make it easier to find the right interface among the hundreds in Program Management.