package org.wikiwebserver.core;

import java.io.ByteArrayOutputStream;

public class WikiCacheItem {
    
    private long expireTime;
    private long createdTime;
    private long lastModifiedTime;
    private String contentType;
    private ByteArrayOutputStream dataStream;
    
    public long getExpireTime() {
        return this.expireTime;
    }
    public void setExpireTime(long expireTime) {
        this.expireTime = expireTime;
    }
    public long getLastModifiedTime() {
        return this.lastModifiedTime;
    }
    public long getCreatedTime() {
        return this.createdTime;
    }
    public void setCreatedTime(long createdTime) {
        this.createdTime = createdTime;
    }
    public void setLastModifiedTime(long lastModifiedTime) {
        this.lastModifiedTime = lastModifiedTime;
    }
    public String getContentType() {
        return this.contentType;
    }
    public void setContentType(String contentType) {
        this.contentType = contentType;
    }
    public ByteArrayOutputStream getDataStream() {
        return this.dataStream;
    }
    public void setDataStream(ByteArrayOutputStream dataStream) {
        this.dataStream = dataStream;
    }
}

