use of org.jboss.qa.bpms.remote.ejb.domain.NestedType in project jbpm by kiegroup.
the class ETaskParametersTest method testCompleteTaskWithNestedType.
@Test
public void testCompleteTaskWithNestedType() {
MyType myObject = new MyType("my object text");
NestedType nestedObject = new NestedType("nested object text", myObject);
startProcessAndCompleteTask(ProcessDefinitions.HUMAN_TASK_WITH_DIFFERENT_TYPES, "outNestedObject", nestedObject, "nestedObject");
}
Aggregations