@Managed
public ModelObject getNavigation(@ManagedContext OperationContext context,
@MappedAttribute("scope") String scopeAttribute,
@MappedAttribute("showAll") String showAllAttribute) {
NodeVisitor visitor = Nodes.visitChildren();
int scope = 0;
if (scopeAttribute != null) {
scope = Integer.parseInt(scopeAttribute);
visitor = Nodes.visitNodes(scope);
}