OfferBase.java 903 Bytes
/*
 * 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;
    }
}