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

as.leap.vertx.rpc.impl.RPCRequest Maven / Gradle / Ivy

package as.leap.vertx.rpc.impl;

import java.util.List;

/**
 *
 */
class RPCRequest {

  private String serviceName;
  private String methodName;
  //[String className, byte[] valueBytes]
  private List args;

  public String getServiceName() {
    return serviceName;
  }

  public void setServiceName(String serviceName) {
    this.serviceName = serviceName;
  }

  public String getMethodName() {
    return methodName;
  }

  public void setMethodName(String methodName) {
    this.methodName = methodName;
  }

  public List getArgs() {
    return args;
  }

  public void setArgs(List args) {
    this.args = args;
  }
}