aboutsummaryrefslogtreecommitdiffstats
path: root/src/eu/siacs/conversations/xmpp/jingle/JingleFile.java
blob: 21cbd71665e37b51b4b560fc7b6361616989ba32 (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
package eu.siacs.conversations.xmpp.jingle;

import java.io.File;

public class JingleFile extends File {
	
	private static final long serialVersionUID = 2247012619505115863L;
	
	private long expectedSize = 0;
	private String sha1sum;
	
	public JingleFile(String path) {
		super(path);
	}
	
	public long getSize() {
		return super.length();
	}
	
	public long getExpectedSize() {
		return this.expectedSize;
	}
	
	public void setExpectedSize(long size) {
		this.expectedSize = size;
	}
	
	public String getSha1Sum() {
		return this.sha1sum;
	}
	
	public void setSha1Sum(String sum) {
		this.sha1sum = sum;
	}
}