}
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;
}