Console.java 881 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.day.cq.commons;

public class Console {
    private String appName;
    private String description;
    private String iconClass;
    private String path;
    private String vanityPath;

    public Console(String appName, String description, String iconClass, String path, String vanityPath) {
        this.appName = appName;
        this.description = description;
        this.iconClass = iconClass;
        this.path = path;
        this.vanityPath = vanityPath;
    }

    public String getAppName() {
        return this.appName;
    }

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

    public String getIconClass() {
        return this.iconClass;
    }

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

    public String getVanityPath() {
        return this.vanityPath;
    }
}