com.sdklite.sphere.restful.Invocation Maven / Gradle / Ivy
package com.sdklite.sphere.restful;
/**
* The concept of the RESTful API invocation
*
* @author johnsonlee
* @since 1.0.0
*/
interface Invocation {
/**
* Invoke the RESTful API with the specified arguments
*
* @param args
* The arguments that the RESTful API required.
* @return The invocation result
* @throws InvocationException
*/
public Object invoke(final Object... args) throws InvocationException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy