log.debug( "Processing " + process.getId() );
result = new HashMap<String, String[]>();
StartNode start = process.getStart();
Node target = start.getTo().getTo();
if ( target instanceof Split ) {
Split split = (Split) target;
for ( Connection connection : split.getDefaultOutgoingConnections() ) {
Constraint constraint = split.getConstraint( connection );
if ( constraint != null ) {
System.out.println( "Found constraint to node " + connection.getTo().getName() + " [" + connection.getTo().getId() + "]: " + constraint.getConstraint() );
result.put( XmlBPMNProcessDumper.getUniqueNodeId( connection.getTo() ),
new String[]{connection.getTo().getName(), constraint.getConstraint()} );
}