Chunk.java
787 Bytes
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
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.dam.core.impl;
public class Chunk {
private long offset;
private long length;
private boolean completed;
private String path;
public long getOffset() {
return this.offset;
}
public void setOffset(long offset) {
this.offset = offset;
}
public long getLength() {
return this.length;
}
public void setLength(long length) {
this.length = length;
}
public boolean isCompleted() {
return this.completed;
}
public void setCompleted(boolean complete) {
this.completed = complete;
}
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
}