summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/filetransfer/util/StandaloneFileChunk.java
blob: cc47a8e6346a1d9b4b4229ea13948d49d7cfd396 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.openslx.filetransfer.util;

public class StandaloneFileChunk extends FileChunk
{

	public StandaloneFileChunk( long startOffset, long endOffset, byte[] sha1sum )
	{
		super( startOffset, endOffset, sha1sum );
	}

	public void overrideStatus(ChunkStatus status)
	{
		this.status = status;
	}
	
}