UploadContext.java 811 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.day.cq.dam.api.Asset
 */
package com.day.cq.dam.pim.impl.sourcing.upload;

import com.day.cq.dam.api.Asset;

public class UploadContext {
    private Asset asset;
    private String basePath;
    private boolean deleteWhenDone;

    public Asset getAsset() {
        return this.asset;
    }

    public void setAsset(Asset asset) {
        this.asset = asset;
    }

    public String getBasePath() {
        return this.basePath;
    }

    public void setBasePath(String basePath) {
        this.basePath = basePath;
    }

    public boolean isDeleteWhenDone() {
        return this.deleteWhenDone;
    }

    public void setDeleteWhenDone(boolean deleteWhenDone) {
        this.deleteWhenDone = deleteWhenDone;
    }
}