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.NotExtensible; 8 9 /** 10 * Although this class is a part of public API, please don't provide your own implementations. 11 * This marker interface is only used to avoid leaking internal API via public API. 12 * Mockito depends on specific internal implementation of this interface. 13 * If you need to provide your own implementation please reach out to us. 14 * Use our issue tracker to open a ticket and open a discussion. 15 * 16 * @since 2.10.0 17 */ 18 @NotExtensible 19 public interface InvocationContainer {} 20