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

...
Kai Reinhard
09.47.2018 e9c74d4f90ae553035ab2edd81e336a8d205b3d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package de.micromata.borgbutler.json.borg;
 
import lombok.Getter;
 
import java.util.List;
 
public class RepoList extends RepositoryMatcher {
    @Getter
    private List<Archive> archives;
    @Getter
    private Encryption encryption;
 
    public void updateFrom(RepoList repoList) {
        super.updateFrom(repoList);
        this.archives = repoList.archives;
        this.encryption = repoList.encryption;
    }
}