VariableInfo.java
798 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
41
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.aemfd.watchfolder.workflow;
import com.adobe.aemfd.watchfolder.workflow.api.payload.WorkflowVariable;
class VariableInfo
implements WorkflowVariable {
String name;
int propertyType;
boolean isMultiple;
Object value;
VariableInfo() {
}
VariableInfo(VariableInfo def, Object newVal) {
this.name = def.name;
this.propertyType = def.propertyType;
this.isMultiple = def.isMultiple;
this.value = newVal;
}
public String getName() {
return this.name;
}
public Object getValue() {
return this.value;
}
public int getType() {
return this.propertyType;
}
public boolean isMultiValued() {
return this.isMultiple;
}
}