.getRegisteredMethods();
log.info("Adding entry point web methods to the StateMachine");
for (RegisteredMethod method : methods) {
SootMethod sootMethod = resolver.getSootMethod(method.getMethod());
if (!resolver.isFilter(method.getMethod())) {
WebMethodState state = stateMachine
.createWebMethodState(sootMethod);
stateMachine.addInitialState(state);
} else {
FilterState state = stateMachine.createFilterState(sootMethod);
stateMachine.addFilterState(state);