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

com.clickzetta.platform.tools.WrapCmd Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.clickzetta.platform.tools;

import java.util.List;

public class WrapCmd {
  public List rpcMethod;
  public List tabletIds;

  public WrapCmd(List rpcMethod, List tabletIds) {
    this.rpcMethod = rpcMethod;
    this.tabletIds = tabletIds;
  }

  public List getRpcMethod() {
    return rpcMethod;
  }

  public void setRpcMethod(List rpcMethod) {
    this.rpcMethod = rpcMethod;
  }

  public List getTabletIds() {
    return tabletIds;
  }

  public void setTabletIds(List tabletIds) {
    this.tabletIds = tabletIds;
  }

  @Override
  public String toString() {
    return "WrapCmd{" +
        "rpcMethod=" + rpcMethod +
        ", tabletIds=" + tabletIds +
        '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy