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

Kai Reinhard
15.39.2021 d80a4b3ab35af575fd06d4e2fb9a3726418c6727
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
27
28
29
30
31
32
33
package de.micromata.borgbutler.json.borg;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
import java.io.Serializable;
 
/**
 * Result of borg info repo
 */
public class BorgRepoInfo implements Serializable {
    private static final long serialVersionUID = -1588038325129799400L;
    @JsonProperty("security_dir")
    private String securityDir;
    private BorgCache cache;
    private BorgEncryption encryption;
    private BorgRepository repository;
 
    public String getSecurityDir() {
        return this.securityDir;
    }
 
    public BorgCache getCache() {
        return this.cache;
    }
 
    public BorgEncryption getEncryption() {
        return this.encryption;
    }
 
    public BorgRepository getRepository() {
        return this.repository;
    }
}