aQute.junit.runtime.Operation Maven / Gradle / Ivy
package aQute.junit.runtime;
/**
* Represents an operation against a service of type S yielding
* a result of type R
*
* @author Neil Bartlett
* @param The service type
* @param The result type
*/
public interface Operation {
R perform(S service) throws Exception;
}