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

...
Kai Reinhard
15.41.2018 2affa1a03f8f4713c6d7dad936f3d494179f7e6e
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
package de.micromata.borgbutler.config;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;
 
public class BorgRepoConfig {
    /**
     * A name describing this config. Only used for displaying purposes.
     */
    @Getter @Setter
    @JsonProperty("display_name")
    private String displayName;
    @Getter @Setter
    private String repo;
    @Getter @Setter
    private String rsh;
    @Getter @Setter
    private String passphrase;
    @Getter @Setter
    private String passwordCommand;
    @Getter @Setter
    @JsonIgnore
    private String id;
}