CacheUpdateImpl.java 1.47 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.cq.mobile.appcache.impl;

import com.adobe.cq.mobile.appcache.impl.CacheUpdate;
import java.util.Calendar;

public class CacheUpdateImpl
implements CacheUpdate {
    private Calendar createdTS;
    private String createdByUserId;
    private String title;
    private String description;
    private Calendar publishedTS;
    private String pubishedByUserId;
    private String path;

    public CacheUpdateImpl(Calendar createdTS, String createdByUserId, String title, String description, Calendar publishedTS, String publishedByUserId, String path) {
        this.createdTS = createdTS;
        this.createdByUserId = createdByUserId;
        this.title = title;
        this.description = description;
        this.publishedTS = publishedTS;
        this.pubishedByUserId = publishedByUserId;
        this.path = path;
    }

    @Override
    public Calendar getCreated() {
        return this.createdTS;
    }

    @Override
    public String getCreatedBy() {
        return this.createdByUserId;
    }

    @Override
    public String getTitle() {
        return this.title;
    }

    @Override
    public String getDescription() {
        return this.description;
    }

    @Override
    public Calendar getLastPublished() {
        return this.publishedTS;
    }

    @Override
    public String getLastPublishedBy() {
        return this.pubishedByUserId;
    }

    @Override
    public String getPath() {
        return this.path;
    }
}