Package com._1c.g5.v8.dt.export
Interface IExportServiceRegistry
-
public interface IExportServiceRegistryThe 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 IExportFileSupportgetExportFileSupport(Version version)GetIExportFileSupportimplementation registered for versionIExportServicegetExportService(Version version)GetIExportServiceimplementation registered for version
-
-
-
Method Detail
-
getExportService
IExportService getExportService(Version version) throws ExportException
GetIExportServiceimplementation registered for version- Parameters:
version- the version of exporting source 1C:Enterprise. Can't benull.- Returns:
- instance of
IExportServiceor null - Throws:
ExportException- if export service for this version is unregistered
-
getExportFileSupport
IExportFileSupport getExportFileSupport(Version version) throws ExportException
GetIExportFileSupportimplementation registered for version- Parameters:
version- the version of exporting source 1C:Enterprise. Can't benull.- Returns:
- instance of
IExportFileSupportor null - Throws:
ExportException- if file export support for this version is unregistered
-
-