Chunk.java 787 Bytes
/*
 * 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;
    }
}