ProcessUtil.setupProcessStandardConfiguration(process);
}
private static void setupActionStandardConfiguration(ActivityItem item)
{
ActivitySocket socket = new ActivitySocketImpl();
socket.setName(CoreConstants.SOCKET_IN);
socket.setEntrySocket(true);
socket.setDefaultSocket(true);
item.addSocket(socket);
socket = new ActivitySocketImpl();
socket.setName(CoreConstants.SOCKET_OUT);
socket.setEntrySocket(false);
socket.setDefaultSocket(true);
item.addSocket(socket);
}