Reference.java 874 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.sling.api.resource.Resource
 */
package com.day.cq.wcm.api.reference;

import org.apache.sling.api.resource.Resource;

public class Reference {
    private final String type;
    private final String name;
    private final Resource resource;
    private final long lastModified;

    public Reference(String type, String name, Resource resource, long lastModified) {
        this.type = type;
        this.name = name;
        this.resource = resource;
        this.lastModified = lastModified;
    }

    public String getType() {
        return this.type;
    }

    public String getName() {
        return this.name;
    }

    public Resource getResource() {
        return this.resource;
    }

    public long getLastModified() {
        return this.lastModified;
    }
}