mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
14.20.2021 5e39c0040ddde260831a5b9f73c0bbfec3738f94
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package de.micromata.borgbutler.json.borg;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * Result of borg list repo
 */
public class BorgRepoList implements Serializable {
    private static final long serialVersionUID = 1006757749929526034L;
    private List<BorgArchive> archives;
    private BorgEncryption encryption;
    private BorgRepository repository;
 
    public List<BorgArchive> getArchives() {
        return this.archives;
    }
 
    public BorgEncryption getEncryption() {
        return this.encryption;
    }
 
    public BorgRepository getRepository() {
        return this.repository;
    }
}