* has not been invited to the event.
*/
public boolean hasUserAcceptedEvent(int eventID, int userID) throws AuthorizationFailedException, IndividualNotInvitedException
{
if(!CVUtility.isModuleVisible("Events",userID, this.dataSource))
throw new AuthorizationFailedException("Event - getEventDetails");
//System.out.println("[DEBUG] [EventsEJB]: In hasUserAcceptedEvent");
CVDal cvdal = new CVDal(dataSource);
Collection colDetails = null;
boolean returnValue = false;