public interface IRepositoryImporter
| Modifier and Type | Method and Description |
|---|---|
void |
importZip(byte[] data,
String relativeRoot)
Imports content from zip file to the repository, based on the relative
root.
|
void |
importZip(byte[] data,
String relativeRoot,
boolean override)
Imports content from zip file to the repository, based on the relative
root.
|
void |
importZip(byte[] data,
String relativeRoot,
boolean override,
boolean excludeRootFolderName,
Map<String,String> filter)
Imports content from zip file to the repository, based on the relative
root.
|
void |
importZip(ZipInputStream zipInputStream,
String relativeRoot)
Imports content from zip file to the repository, based on the relative
root.
|
void |
importZip(ZipInputStream zipInputStream,
String relativeRoot,
boolean override)
Imports content from zip file to the repository, based on the relative
root.
|
void |
importZip(ZipInputStream zipInputStream,
String relativeRoot,
boolean override,
boolean excludeRootFolderName)
Imports content from zip file to the repository, based on the relative
root.
|
void importZip(ZipInputStream zipInputStream, String relativeRoot) throws RepositoryImportException
zipInputStream - the input streamrelativeRoot - the relative rootRepositoryImportException - in case the zip cannot be importedvoid importZip(ZipInputStream zipInputStream, String relativeRoot, boolean override) throws RepositoryImportException
zipInputStream - the input streamrelativeRoot - the relative rootoverride - whether to override existingRepositoryImportException - in case the zip cannot be importedvoid importZip(ZipInputStream zipInputStream, String relativeRoot, boolean override, boolean excludeRootFolderName) throws RepositoryImportException
zipInputStream - the input streamrelativeRoot - the relative rootoverride - whether to override existingexcludeRootFolderName - whether to exclude the root folder nameRepositoryImportException - in case the zip cannot be importedvoid importZip(byte[] data,
String relativeRoot)
throws RepositoryImportException
data - the zip file as byte arrayrelativeRoot - the relative rootRepositoryImportException - in case the zip cannot be importedvoid importZip(byte[] data,
String relativeRoot,
boolean override)
throws RepositoryImportException
data - the zip file as byte arrayrelativeRoot - the relative rootoverride - whether to override existingRepositoryImportException - in case the zip cannot be importedvoid importZip(byte[] data,
String relativeRoot,
boolean override,
boolean excludeRootFolderName,
Map<String,String> filter)
throws RepositoryImportException
data - the zip file as byte arrayrelativeRoot - the relative rootoverride - whether to override existingexcludeRootFolderName - the exclude root folder namefilter - a filterRepositoryImportException - in case the zip cannot be importedCopyright © 2010–2018 Eclipse Foundation. All rights reserved.