} else if (testAction instanceof SleepAction) {
actions.getActionsAndSendsAndReceives().add(new SleepActionConverter().convertModel((SleepAction) testAction));
} else if (testAction instanceof ExecuteSQLAction) {
actions.getActionsAndSendsAndReceives().add(new SqlActionConverter().convertModel((ExecuteSQLAction) testAction));
} else if (testAction instanceof RepeatOnErrorUntilTrue) {
actions.getActionsAndSendsAndReceives().add(new RepeatOnErrorContainerConverter().convertModel((RepeatOnErrorUntilTrue) testAction));
} else {
actions.getActionsAndSendsAndReceives().add(new ActionConverter(testAction.getName()).convertModel(testAction));
}
}