1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.internal.configuration.injection.filter;
6
7import java.lang.reflect.Field;
8import java.util.Collection;
9
10public interface MockCandidateFilter {
11
12    OngoingInjecter filterCandidate(
13            Collection<Object> mocks,
14            Field fieldToBeInjected,
15            Object fieldInstance
16    );
17
18}
19