List<Participant> participants = new LinkedList<Participant>();
IWFOMService service = (IWFOMService)event.getApplicationContext().getBean("WFOMService");
String mode = activityXml.getParticipantType();
ParticipantMode particiMode = ParticipantModeFactory.buildParticipantMode(mode);
_particis = particiMode.creatParticipants(event, activityXml);
for(Participant p : _particis) {
participants.addAll(service.getParticipants(p.getParticType(), p.getParticipant()));
}
if(participants ==null || participants.size() == 0) {