if (!resolver.isFilter(method.getMethod())) {
WebMethodState state = stateMachine
.createWebMethodState(sootMethod);
stateMachine.addInitialState(state);
} else {
FilterState state = stateMachine.createFilterState(sootMethod);
stateMachine.addFilterState(state);
}
}
log.info("Done adding entry point web methods to the StateMachine");
}