Mapping.java
1.24 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.mcm.campaign.servlets.util;
public class Mapping {
private final String name;
private final String mapping;
private final boolean isReconciliationKey;
private final boolean isEncryptedPK;
private String originalValue;
Mapping(String name, String mapping, boolean isReconciliationKey) {
this.name = name;
this.mapping = mapping;
this.isReconciliationKey = isReconciliationKey;
this.isEncryptedPK = false;
this.originalValue = null;
}
Mapping(String name, String mapping) {
this.name = name;
this.mapping = mapping;
this.isReconciliationKey = false;
this.isEncryptedPK = true;
this.originalValue = null;
}
public String getName() {
return this.name;
}
public String getMapping() {
return this.mapping;
}
public boolean isReconciliationKey() {
return this.isReconciliationKey;
}
public boolean isEncryptedPK() {
return this.isEncryptedPK;
}
public String getOriginalValue() {
return this.originalValue;
}
public void setOriginalValue(String originalValue) {
this.originalValue = originalValue;
}
}