com.polarion.alm.tracker.importer.IImportManager


FIELDS
Modifiers and TypeNameDescription
String IMP_MSPROJECT Id of importer from MS Project XML file.
String IMP_WORD Id of importer from Word document.
String IMP_WORD_ROUND_TRIP Id of importer from Word round-trip document.
String IMP_EXCEL_ROUND_TRIP
String IMP_EXCEL
METHODS
Modifiers and TypeNameDescription
Collection getImporterDescriptors() Returns descriptors of all registered importers (sorted lexicographically by label).
List getImporterDescriptors(String) Returns descriptors of all registered importers (sorted lexicographically by label) that supports the export type (see EXPORT_TYPE* constants in {@link IImportConfiguration} and its sub-interfaces.
IImporterDescriptor getImporterDescriptor(String) Returns descriptor with the given id.
IImportInfo startImport(IImporterDescriptor,IImportConfiguration) Starts the import.
void removeImportInfo(IImportInfo) Removes finished import info.
List getImports(IUser) Returns all imports started by the user (newer imports first), that were not removed yet. If user is null, all imports are returned.
IImportInfo getImport(String) Returns import info by id or null if it is not found.
Collection getTemplates(IImporterDescriptor,IContextId) Returns templates available for import with the given importer (sorted lexicographically by name) in the given context (so the returned list of templates contains templates inherited from other contexts).
IImportTemplate getTemplate(IImporterDescriptor,String,IContextId) Returns template with the given name or null if such a template does not exist (not even inherited one).
void deleteTemplate(IImporterDescriptor,String,IContextId)

Back to Index