Пример #1
0
 /*
  * (non-Javadoc)
  *
  * @see com.wiley.gr.ace.authorservices.services.service.UserLoginService#
  * searchUserInParticipantByALMId(java.lang.String)
  */
 @Override
 public boolean searchUserInParticipantByALMId(final String almUserId) {
   boolean userFound = true;
   Participant participant = participantsInterfaceService.searchParticipantByUserId(almUserId);
   if (participant == null) {
     userFound = false;
   }
   return userFound;
 }