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

org.restler.client.MethodInvocationMapper Maven / Gradle / Ivy

The newest version!
package org.restler.client;

import java.lang.reflect.Method;

/**
 * MethodInvocationMapper is a function able to transform a representation of a Java call (receiver, method and arguments)
 * into a Restler {@code Call}.
 */
public interface MethodInvocationMapper {

    Call map(Object receiver, Method method, Object[] args);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy