@Action(value = "/where/standard/bookmark"),
@Action(value = "/where/iphone/bookmark"),
@Action(value = "/where/text/bookmark")})
public String execute() {
BookmarkBean bookmark = getBookmark();
if (bookmark == null)
return INPUT;
/**
* We need to replace the bookmark ids in the "id" parameter with the stop
* ids
*/
_ids = bookmark.getStopIds();
_model.setStopIds(bookmark.getStopIds());
RouteFilterBean filter = bookmark.getRouteFilter();
if (filter != null) {
super.setRoute(new ArrayList<String>(filter.getRouteIds()));
}
setTitle(bookmark.getName());
return super.execute();
}