Package com.atlassian.bamboo.migration
Interface BambooStreamRootMapper
-
- All Superinterfaces:
BambooRootMapper
- All Known Implementing Classes:
ActiveObjectsMapper
public interface BambooStreamRootMapper extends BambooRootMapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
exportData(@NotNull OutputStream outputStream, ExportDetailsBean exportDetailsBean)
Perform data export@NotNull String
getFileName()
Returns local name of the XML parent node handled by this mappervoid
importData(@NotNull InputStream inputStream)
Perform data import-
Methods inherited from interface com.atlassian.bamboo.migration.BambooRootMapper
isShouldExport
-
-
-
-
Method Detail
-
getFileName
@NotNull @NotNull String getFileName()
Returns local name of the XML parent node handled by this mapper- Returns:
- local name of the XML parent node
-
exportData
void exportData(@NotNull @NotNull OutputStream outputStream, ExportDetailsBean exportDetailsBean) throws Exception
Perform data export- Parameters:
outputStream
-exportDetailsBean
-- Throws:
Exception
- when something went wrong
-
importData
void importData(@NotNull @NotNull InputStream inputStream) throws Exception
Perform data import- Parameters:
inputStream
-- Throws:
Exception
- when something went wrong
-
-