public boolean isProfileImageExists(String userId) {
   try {
     return stub.isProfileImageExists(userId);
   } catch (RemoteException e) {
     log.error(e.getMessage(), e);
     return false;
   }
 }