Package com.centraview.marketing

Examples of com.centraview.marketing.EventAttendeeVO


         Iterator resultsIterator = resultsCollection.iterator();
         while (resultsIterator.hasNext())
         {
           HashMap resultHashMap = (HashMap) resultsIterator.next();
           //System.out.println("[DEBUG] [EventsEJB] HashMap Results: " + resultHashMap.toString());
           EventAttendeeVO eventAttendee = new EventAttendeeVO();
           eventAttendee.setEventID(Integer.parseInt(resultHashMap.get("EventID").toString()));
           eventAttendee.setIndividualID(Integer.parseInt(resultHashMap.get("IndividualID").toString()));
           eventAttendee.setAcceptedString(resultHashMap.get("accepted").toString());
           //System.out.println("[DEBUG] [EventsEJB] eventAttendee: " + eventAttendee.toString());
           returnCollection.add(eventAttendee);
         } //end of while loop (resultsIterator.hasNext())
       } //end of if statement (resultsCollection != null)
     } //end of try block
View Full Code Here

TOP

Related Classes of com.centraview.marketing.EventAttendeeVO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.