com.github.restup.service.MethodCommand Maven / Gradle / Ivy
package com.github.restup.service;
/**
* Defines a var arg command
*
* @author abuttaro
*/
public interface MethodCommand {
T execute(Object... args);
}
package com.github.restup.service;
/**
* Defines a var arg command
*
* @author abuttaro
*/
public interface MethodCommand {
T execute(Object... args);
}