Interface ProjectsImportResult
-
public interface ProjectsImportResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilegetArtifactsMoveScriptBat()Null when no builds were importedFilegetArtifactsMoveScriptSh()Null when no builds were importedFilegetConflictingConfigsDir()Null when configs were not in import scope.intgetCreatedGroupsCount()intgetCreatedUsersCount()longgetDuration()List<String>getImportedProjectsExtIds()Returns external ids of projects that were modified during the import.Map<String,Integer>getImportedTables()table name -> count of imported rowsintgetMergedGroupsCount()intgetMergedUsersCount()
-
-
-
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()
-
-