Package org.jitterbit.integration.server.implementation.webservice.interchange.deploy.client

Examples of org.jitterbit.integration.server.implementation.webservice.interchange.deploy.client.InterchangeDataTable


  static InterchangeDataTable getInterchangeDataTable(Collection<EntityPipelinePlugin> pipelinePlugins) {
    if ( pipelinePlugins == null || pipelinePlugins.size() == 0 ) {
      return null;
    }
   
    InterchangeDataTable retval = new InterchangeDataTable();
    retval.setColumnNames(columnNames.clone());
   
    InterchangeDataRow[] rows = new InterchangeDataRow[pipelinePlugins.size()];
    int i = 0;
    for( EntityPipelinePlugin plugin : pipelinePlugins ) {
     
      InterchangeDataRow row = new InterchangeDataRow();
      row.setFields(getFields(plugin));
      rows[i++] = row;
    }
    retval.setRows(rows);
    return retval;
  }
View Full Code Here


     */
    private InterchangeDataTable getInterchangeDataTable(List<InterchangeDataRow> rows) {
        if (m_serverColumnNames == null)
            throw new IllegalStateException("The column names have not been set.");

        InterchangeDataTable tab = new InterchangeDataTable();
        tab.setColumnNames(m_serverColumnNames);
        tab.setRows(rows.toArray(new InterchangeDataRow[rows.size()]));
        return tab;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.server.implementation.webservice.interchange.deploy.client.InterchangeDataTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.