* propagated to an exception handler if defined or abort the process execution otherwise.
*/
public boolean execute(HandlerContext hc)
throws Exception
{
PersistedComplexParam param = (PersistedComplexParam) hc.getParam("ObjParam");
Integer value = (Integer) hc.getParam("NumParam");
int newValue = value.intValue() + 1;
param.setResult(newValue);
if (newValue >= 100)
{
hc.setNextSocket("LargeNumber");
}