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

Kai Reinhard
31.45.2019 e24dcccdda9ae085534e0f16814486eb155aaa59
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
27
28
package de.micromata.borgbutler.json.borg;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
import java.io.Serializable;
 
/**
 * Part of Borg json objects to refer objects to repositories.
 */
public class BorgRepository implements Serializable {
    private static final long serialVersionUID = 1278802519434516280L;
    private String id;
    @JsonProperty("last_modified")
    private String lastModified;
    private String location;
 
    public String getId() {
        return this.id;
    }
 
    public String getLastModified() {
        return this.lastModified;
    }
 
    public String getLocation() {
        return this.location;
    }
}