Advanced Customization > Services and Infrastructure Customization > Import Export Framework > Product Design eXchange (PDX) Support for Export > Supported APIs > createExportPackageForPDX
  
createExportPackageForPDX
There are four static public APIs (createExportPackageForPDX) in ExportPackageForPDX to support this functionality.
public static wt.ixb.objectset.ExportPackage createExportPackageForPDX
public static wt.ixb.objectset.ExportPackage createExportPackageForPDX(

java.lang.String name, java.lang.String description,
java.lang.String exporter, java.langString[] generIds,
java.lang.String[] generParams, java.lang.String[] filterIds,
java.lang.String[] filterParams) throws wt.util.WTException
Purpose: Create ExportPackage holding all information necessary for export in PDX format. The objects are collected using standard ixb collection mechanism (generators and filters).
Parameters:
name — Name of the export package
description — Description of the export package
exporter — Name of the user who makes export
generIds — Array of Sting id for object set generator types, e.g. {”singleDocument”,”productStructureNavigatorWithEPM”}
generParams — Array of local id for the corresponding seed objects
filterIds — Array of String id for object set filters
filterParams — Array of Strings representing parameters for filtering
Throws: wt.util.WTException
public static wt.ixb.objectset.ExportPackage createExportPackageForPDX
public static wt.ixb.objectset.ExportPackage createExportPackageForPDX(

wt.inf.container.WTContainerRef container, java.lang.String name,
java.lang.String description, java.lang.String exporter,
java.lang.String[] generIds, java.lang.String[] generParams,
java.lang.String[] filterIds, java.lang.String[] filterParams)
throws wt.util.WTException
Purpose: Creates ExportPackage holding all information necessary for export in PDX format. The objects are collected within a container using standard ixb collection mechanism (generators and filters).
Parameters:
container — Object reference of container holding objects to export
name — Name of the export package
description — Description of the export package
exporter — Name of the user who make export
generIds — Array or String id for object set generator types, e.g. {”singleDocument”,”productStructureNavigatorWithEPM”}
generParams — Array of local id for the corresponding seed objects
filterIds — Array of String id for object set filters
filterParams — Array of String representing parameters for filtering
Throws: wt.util.WTException
public static wt.ixb.objectset.ExportPackage createExportPackageForPDX
public static wt.ixb.objectset.ExportPackage createExportPackageForPDX(

java.lang.String name, java.lang.String description,
java.lang.String exporter, java.lang.String[] generIds,
java.lang.String[] generParams) throws wt.util.WTException
Purpose: Convenience method for the common case when objects are collected without filtering
Parameters:
name — Name of the export package
description — Description of the export package
exporter — Name of the user who makes export
generIds — Array of String id for object set generatory types, e.g. {”singleDocument”,”productStructureNavigatorWithEPM”}
generParams — Array of local id for the corresponding seed objects
Throws: wt.util.WTException
public static wt.ixb.objectset.ExportPackage createExportPackageForPDX
public static wt.ixb.objectset.ExportPackage createExportPackageForPDX(

wt.inf.container.WTContainerRef container,
java.lang.String name,
java.lang.String description,
java.lang.String exporter,
java.lang.String[] generIds,
java.lang.String[] generParams)
throws wt.util.WTException
Purpose: Convenience method for the common case when objects are collected within a container without filtering
Parameters:
container — Object reference of container
name — Name of the export package
description — Description of the export package
exporter — Name of the user who makes export
generIds — Array of String id for object set generatory types, e.g. {”singleDocument”,”productStructureNavigatorWithEPM”}
generParams — Array of local id for the corresponding seed objects
Throws: wt.util.WTException