We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fbd481 commit bc723e7Copy full SHA for bc723e7
zeppelin-client/src/main/java/org/apache/zeppelin/client/SessionResult.java
@@ -26,6 +26,26 @@ public SessionResult(JSONObject sessionJson) {
26
}
27
28
29
+ public String getSessionId() {
30
+ return sessionId;
31
+ }
32
+
33
+ public String getInterpreter() {
34
+ return interpreter;
35
36
37
+ public String getState() {
38
+ return state;
39
40
41
+ public String getWeburl() {
42
+ return weburl;
43
44
45
+ public String getStartTime() {
46
+ return startTime;
47
48
49
@Override
50
public String toString() {
51
return "SessionResult{" +
0 commit comments