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

Kai Reinhard
10.17.2018 feff94fdffe67ba32b92e932704d2352c7778543
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package de.micromata.borgbutler.json.borg;
 
import lombok.Getter;
 
import java.io.Serializable;
import java.util.List;
 
public class RepoList extends RepositoryMatcher implements Serializable {
    private static final long serialVersionUID = 1006757749929526034L;
    @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;
    }
}