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

org.xbib.helianthus.common.RpcRequest Maven / Gradle / Ivy

package org.xbib.helianthus.common;

import java.util.List;

public interface RpcRequest extends Request {
    Class serviceType();

    String method();

    List params();
}