All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.runtime.MockedThroughWrapper Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.runtime;

/**
 * Usually, QuarkusMock mocking replaces a "delegating instance" of a client proxy.
 *
 * In some cases, e.g. for REST Client Reactive, a CDI bean is a wrapper over a delegate.
 * This interface allows to replace the delegate instead of the delegating instance of the proxy.
 */
public interface MockedThroughWrapper {
    void setMock(Object mock);

    void clearMock();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy