package de.micromata.borgbutler.json.borg;
import java.io.Serializable;
import java.util.List;
/**
* Result of borg info repo::archive.
*/
public class BorgArchiveInfo implements Serializable {
private static final long serialVersionUID = -4200553322856662346L;
private List archives;
private BorgCache cache;
private BorgEncryption encryption;
private BorgRepository repository;
public List getArchives() {
return this.archives;
}
public BorgCache getCache() {
return this.cache;
}
public BorgEncryption getEncryption() {
return this.encryption;
}
public BorgRepository getRepository() {
return this.repository;
}
}