com.clickzetta.platform.tools.WrapCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
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