Package com._1c.g5.v8.dt.export
Interface IExportServiceRegistry
-
public interface IExportServiceRegistry
The workbench's global registry of export services.This registry contains all registered export services.
- See Also:
IExportService
- Restriction:
- This interface is not intended to be extended by clients.
- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IExportFileSupport
getExportFileSupport(Version version)
GetIExportFileSupport
implementation registered for versionIExportService
getExportService(Version version)
GetIExportService
implementation registered for version
-
-
-
Method Detail
-
getExportService
IExportService getExportService(Version version) throws ExportException
GetIExportService
implementation registered for version- Parameters:
version
- the version of exporting source 1C:Enterprise. Can't benull
.- Returns:
- instance of
IExportService
or null - Throws:
ExportException
- if export service for this version is unregistered
-
getExportFileSupport
IExportFileSupport getExportFileSupport(Version version) throws ExportException
GetIExportFileSupport
implementation registered for version- Parameters:
version
- the version of exporting source 1C:Enterprise. Can't benull
.- Returns:
- instance of
IExportFileSupport
or null - Throws:
ExportException
- if file export support for this version is unregistered
-
-