try {
if(isAuthenticated()) {
String authSvc = getAuthenticationService();
if(StringUtil.isNotEmpty(authSvc)) {
// Emit a request to this URL and get the return code
AuthenticationService as = new AuthenticationService(this);
return as.isValidAuthentication(authSvc);
}
return true;
}
} catch (ClientServicesException e) {
}