Skip to content

Commit bc723e7

Browse files
committed
minor update
1 parent 7fbd481 commit bc723e7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

zeppelin-client/src/main/java/org/apache/zeppelin/client/SessionResult.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,26 @@ public SessionResult(JSONObject sessionJson) {
2626
}
2727
}
2828

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+
2949
@Override
3050
public String toString() {
3151
return "SessionResult{" +

0 commit comments

Comments
 (0)