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

Kai Reinhard
15.39.2018 60b424b101e42fa1aadb9300f32a842c9681a092
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package de.micromata.borgbutler.json.borg;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
 
import java.io.Serializable;
 
/**
 * Result of borg info repo
 */
public class BorgRepoInfo implements Serializable {
    private static final long serialVersionUID = -1588038325129799400L;
    @Getter
    @JsonProperty("security_dir")
    private String securityDir;
    @Getter
    private BorgCache cache;
    @Getter
    private BorgEncryption encryption;
    @Getter
    private BorgRepository repository;
}