UploadContext.java
811 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
/*
* 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;
}
}