Ejemplo n.º 1
0
  public XmlData toXmlData() {
    XmlData xd = new XmlData();

    xd.setParamValue("table_name", tableName);
    xd.setSubDataSingle("struct", tableXmlST.toXmlData());
    if (pkColName != null) xd.setParamValue("pk_col_name", pkColName);
    if (selectSql != null) xd.setParamValue("select_sql", selectSql);

    return xd;
  }
Ejemplo n.º 2
0
 XmlData getInsRTXmlData() {
   XmlData tmpxd = new XmlData();
   tmpxd.setParamValue("id", Long.valueOf(getInsId()));
   String t = getInsTitle();
   if (t != null) {
     tmpxd.setParamValue("title", t);
   }
   tmpxd.setParamValue("start_date", getStartDate());
   tmpxd.setParamValue("flow_path", getFlowPath());
   return tmpxd;
 }
Ejemplo n.º 3
0
    public XmlData toXmlData() {
      XmlData xd = new XmlData();
      xd.setParamValue("node_id", this.nodeId);

      xd.setParamValue("is_running", Boolean.valueOf(this.bRunning));
      if (this.selTransId != null) {
        xd.setParamValue("sel_trans_id", this.selTransId);
      }
      if (this.relatedInsIds != null) xd.setParamValues("ins_ids", this.relatedInsIds);
      return xd;
    }
Ejemplo n.º 4
0
 public XmlData toXmlData() {
   XmlData xd = new XmlData();
   for (DataColumn dc : belongToDT.getColumns()) {
     String n = dc.getName();
     Object o = this.getValue(n);
     if (o != null) xd.setParamValue(n, o);
   }
   return xd;
 }