Interface ProjectsImportResult
-
public interface ProjectsImportResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description File
getArtifactsMoveScriptBat()
Null when no builds were importedFile
getArtifactsMoveScriptSh()
Null when no builds were importedFile
getConflictingConfigsDir()
Null when configs were not in import scope.int
getCreatedGroupsCount()
int
getCreatedUsersCount()
long
getDuration()
List<String>
getImportedProjectsExtIds()
Returns external ids of projects that were modified during the import.Map<String,Integer>
getImportedTables()
table name -> count of imported rowsint
getMergedGroupsCount()
int
getMergedUsersCount()
-
-
-
Method Detail
-
getImportedProjectsExtIds
@NotNull List<String> getImportedProjectsExtIds()
Returns external ids of projects that were modified during the import. It includes newly created projects and also projects in which build types, templates or vcs roots were added.
-
getImportedTables
@NotNull Map<String,Integer> getImportedTables()
table name -> count of imported rows
-
getArtifactsMoveScriptBat
@Nullable File getArtifactsMoveScriptBat()
Null when no builds were imported
-
getArtifactsMoveScriptSh
@Nullable File getArtifactsMoveScriptSh()
Null when no builds were imported
-
getConflictingConfigsDir
@Nullable File getConflictingConfigsDir()
Null when configs were not in import scope.
-
getCreatedUsersCount
int getCreatedUsersCount()
-
getMergedUsersCount
int getMergedUsersCount()
-
getCreatedGroupsCount
int getCreatedGroupsCount()
-
getMergedGroupsCount
int getMergedGroupsCount()
-
getDuration
long getDuration()
-
-