this.viewStatus = ViewStatus.Status.UNKNOWN;
return this.viewStatus;
}
// Otherwise, probe:
try {
ViewStatus status = this.viewService.getViewStatus(this.sessionId);
this.viewStatus = status.getState();
return this.viewStatus;
} catch( Exception e ) {
e.printStackTrace();
this.viewStatus = ViewStatus.Status.UNKNOWN;
return this.viewStatus;