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

...
Kai Reinhard
14.05.2018 39a91e8bf2af9a7a321d6bb554be008de34dbcdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package de.micromata.borgbutler.json.borg;
 
import lombok.Getter;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * Result of borg list repo
 */
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;
    }
}