Package com.bugyal.imentor.server.data

Examples of com.bugyal.imentor.server.data.ParticipantPulse


    }
    return null;
  }
   
  public boolean createParticipantPulse(PulseVO p) {
    ParticipantPulse pulse = new ParticipantPulse(p.getEmailId(), p.getName(), p.getFacebookId(), p.getLongitude(), p.getLatitude(), p.getLocationString(), p.getState(), p.getOthersFacebookId())
    try {
      return pm.createPulse(pulse);
    } catch (MentorException e) {
      return false;
    }
View Full Code Here

TOP

Related Classes of com.bugyal.imentor.server.data.ParticipantPulse

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.