blob: 95602616dd8f8c7928f926a2c2eed133e62d44bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package com.keuin.kbackupfabric.util.backup.inc;
/**
* Incremental backup is implemented as git-like file collection.
* Files are called `objects`, the collection contains all files distinguished by their
* identifiers. Usually, identifier is the combination of hash and other short information (such as size and another hash).
* The identifier should use hashes that are strong enough, to prevent possible collisions.
*/
public class ObjectCollectionManager {
}
|