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

org.conqat.engine.service.shared.client.ServiceClientCallable Maven / Gradle / Ivy

package org.conqat.engine.service.shared.client;

import org.apache.http.client.HttpClient;

/**
 * Interface to enable testing service calls with provided responses. For an
 * example see IdeServiceClientTest.
 */
@FunctionalInterface
public interface ServiceClientCallable {

	/** Overridden by implementors, actually starts the service call */
	T call(HttpClient client) throws ServiceCallException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy