session.setToBeCancelledClientTransaction(ct);
}
}
private SimpleCallFlowState getState(String classNameForState) {
SimpleCallFlowState simpleCallFlowState = null;
try {
Class innerCls = Class.forName(classNameForState);
Constructor c = innerCls.getDeclaredConstructors()[0];
simpleCallFlowState = (SimpleCallFlowState) c
.newInstance(new Object[] { this });