Package org.pentaho.di.core
Class XmlExportHelper
- java.lang.Object
-
- org.pentaho.di.core.XmlExportHelper
-
public class XmlExportHelper extends Object
Helper class that filterers information, before exporting meta to xml.- Author:
- IvanNikolaychuk
-
-
Constructor Summary
Constructors Constructor Description XmlExportHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
swapTables(org.pentaho.di.job.JobMeta jobMeta)
static void
swapTables(org.pentaho.di.trans.TransMeta transMeta)
When exporting meta we should not export user global parameters.
-
-
-
Method Detail
-
swapTables
public static void swapTables(org.pentaho.di.trans.TransMeta transMeta)
When exporting meta we should not export user global parameters. Method makes clone for each table and deletes all global parameters. We have to make clones of each table, because we don't want to change real tables content.- Parameters:
transMeta
- meta, that contains log tables to be refactored before export
-
swapTables
public static void swapTables(org.pentaho.di.job.JobMeta jobMeta)
- Parameters:
jobMeta
- contains log tables to be refactored before export
-
-