OfferBase.java
903 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.
*/
package com.day.cq.analytics.testandtarget.impl;
public class OfferBase {
private static final String BASE_CONTENT = "<script type='text/javascript'>CQ_Analytics.TestTarget.pull('%s','${mbox.name}','1.0.0');</script>";
private long id;
private String name;
private String type = "html";
private transient String contentPath;
private String content;
public OfferBase(long id, String name, String content) {
this.id = id;
this.name = name;
this.content = content;
}
protected String getName() {
return this.name;
}
public long getId() {
return this.id;
}
protected String getContentPath() {
return this.contentPath;
}
protected String getContent() {
return this.content;
}
protected String getType() {
return this.type;
}
}