Class SpaceRestoreSettings
- java.lang.Object
-
- com.atlassian.confluence.api.model.backuprestore.SpaceRestoreSettings
-
public class SpaceRestoreSettings extends Object
Space Restore settings- Since:
- 8.2.0
-
-
Constructor Summary
Constructors Constructor Description SpaceRestoreSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFileName()Returns name of the file that is used for restore.BooleangetSkipReindex()voidsetFileName(String fileName)Sets name of the file that is used for restore.voidsetSkipReindex(Boolean skipReindex)Set to true if the space restore should skip reindex.
-
-
-
Method Detail
-
getFileName
public String getFileName()
Returns name of the file that is used for restore.
-
setFileName
public void setFileName(String fileName)
Sets name of the file that is used for restore. It should be just a file name without a path. File should be located in restore/space folder in Confluence SharedHome.
-
getSkipReindex
public Boolean getSkipReindex()
- Returns:
- value of skipReindex property.
-
setSkipReindex
public void setSkipReindex(Boolean skipReindex)
Set to true if the space restore should skip reindex. Leave null or false otherwise.- Parameters:
skipReindex- true if re-indexing should be skipped. False otherwise.
-
-