Console.java
881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* 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;
}
}