package straumann;
|
|
import foundation.callable.Callable;
|
import foundation.persist.sql.NamedSQL;
|
|
public class ChartConsole extends Callable{
|
|
@Override
|
protected void doReceive(String[] paths) throws Exception {
|
if (paths.length == 2) {
|
String operator = paths[1];
|
|
if ("getChartOperator".equalsIgnoreCase(operator)) {
|
getChartOperator();
|
}
|
}
|
|
}
|
|
private void getChartOperator() throws Exception {
|
String sqlName = request.getParameter("sqlname");
|
String xType = request.getParameter("xtype");
|
String haveRate = request.getParameter("haveRate");
|
NamedSQL namedSQL = NamedSQL.getInstance("getDistributorTotalKPI");
|
|
|
}
|
}
|