1 /*
2  * Copyright (c) 2007 Mockito contributors
3  * This program is made available under the terms of the MIT License.
4  */
5 package org.mockito.invocation;
6 
7 import org.mockito.Incubating;
8 import org.mockito.NotExtensible;
9 
10 /**
11  * Although this class is a part of public API, please don't provide your own implementations.
12  * This marker interface is only used to avoid leaking internal API via public API.
13  * Mockito depends on specific internal implementation of this interface.
14  * If you need to provide your own implementation please reach out to us.
15  * Use our issue tracker to open a ticket and open a discussion.
16  *
17  * @since 2.10.0
18  */
19 @NotExtensible
20 @Incubating
21 public interface InvocationContainer {}
22