Class BackupHistory
- java.lang.Object
-
- jetbrains.buildServer.serverSide.maintenance.BackupHistory
-
- All Implemented Interfaces:
Serializable
public class BackupHistory extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BackupHistory()
BackupHistory(List<BackupFileProcessInfo> records, Pager pager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BackupFileProcessInfo
getByName(String name)
Looks for an entry with the specified file name.Pager
getPager()
List<BackupFileProcessInfo>
getRecords()
-
-
-
Constructor Detail
-
BackupHistory
public BackupHistory()
-
BackupHistory
public BackupHistory(@NotNull List<BackupFileProcessInfo> records, @NotNull Pager pager)
-
-
Method Detail
-
getRecords
@NotNull public List<BackupFileProcessInfo> getRecords()
-
getPager
@NotNull public Pager getPager()
-
getByName
public BackupFileProcessInfo getByName(String name)
Looks for an entry with the specified file name.Uses
BackupFileProcessInfo.nameEquals(java.lang.String)
for name comparing.- Parameters:
name
- name of the file to look for, without path and without extension, case sensitive.- Returns:
- found entry, or null if not found.
-
-