Package de.xima.fc.exporter.interfaces
Interface IEntityExporter<T extends de.xima.cmn.dao.interfaces.IEntity<Long>>
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AEntityExporter
,ProjectExporter
,TemplateExporter
public interface IEntityExporter<T extends de.xima.cmn.dao.interfaces.IEntity<Long>> extends Serializable
Common interface for entity exporters- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description File
doExport(IEntityContext ec, File baseDir, Benutzer user)
Exports the set entities to the given directoryList<T>
getEntities()
Deprecated.T
getEntity()
Deprecated.IEntityExporter<T>
withCompatitbiltyMode(boolean compatitbiltyMode)
-
-
-
Method Detail
-
withCompatitbiltyMode
IEntityExporter<T> withCompatitbiltyMode(boolean compatitbiltyMode)
- Parameters:
compatitbiltyMode
-Boolean
whether or not entities should be exportedt in compatibility mode- Returns:
IEntityExporter
the exporter
-
doExport
File doExport(IEntityContext ec, File baseDir, Benutzer user) throws Exception
Exports the set entities to the given directory
-
getEntity
@Deprecated T getEntity()
Deprecated.
-
getEntities
@Deprecated List<T> getEntities()
Deprecated.
-
-