blob: a101fd30e7dff9796bcd622993de50bd1abe5682 (
plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
package com.keuin.kbackupfabric.util.backup.incremental;
import com.keuin.kbackupfabric.util.backup.incremental.identifier.ObjectIdentifier;
import java.io.Serializable;
import java.util.Objects;
public class ObjectElement implements Serializable {
private static final long serialVersionUID = 268304683651745899L;
private final String name;
private final ObjectIdentifier identifier;
public ObjectElement(String name, ObjectIdentifier identifier) {
Objects.requireNonNull(name);
Objects.requireNonNull(identifier);
this.name = name;
this.identifier = identifier;
}
/**
* Get file name.
*
* @return the file name.
*/
public String getName() {
return name;
}
/**
* Get file identifier, which is considered to be different between files with different contents.
*
* @return the identifier.
*/
public ObjectIdentifier getIdentifier() {
return identifier;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ObjectElement that = (ObjectElement) o;
return name.equals(that.getName()) &&
identifier.equals(that.getIdentifier());
}
@Override
public int hashCode() {
return Objects.hash(name, identifier);
}
@Override
public String toString() {
return "ObjectElement{" +
"name='" + name + '\'' +
", identifier=" + identifier +
'}';
}
}
|