| Modifier and Type | Method and Description | 
|---|---|
| List<TreeNodeBean> | getChildren(String loadUrl)Gets All of the immediate children of a node represented by its LoadURL. | 
| List<TreeNodeBean> | getChildren(String loadUrl,
           int start)Gets All of the immediate children of a node from start represented by its LoadURL. | 
| List<AssetId> | getImmediateChildren(String browseUrl)Gets All of the immediate children of a node represented by its LoadURL. | 
| List<TreeNodeBean> | getRoots(List<String> tabs)Builds a list of tree nodes representing tree tabs. | 
| List<TreeNodeBean> | getRoots(List<String> tabs,
        String uiType) | 
| Map<String,String> | getTreeSections(String tabID)Gets the sections for the given tab id (not fw_uid) | 
| Map<String,String> | getTreeTabs()Returns the tabs available to the specified user in the specified site. | 
getManager, getResponse, setManagerMap<String,String> getTreeTabs() throws ServiceException
Map where:
 String representing the tab fw_uidString representing the tab idServiceException - wraps any exception underlying the service call.Map<String,String> getTreeSections(String tabID) throws ServiceException
tabID - the tab identifierMap where:
 String containing the section nameString containing the section populate URLServiceException - wraps any exception underlying the service call.List<TreeNodeBean> getRoots(List<String> tabs) throws ServiceException
tabs - the tree tabs for which we want to display root nodes, identified by their fw_uid. If null, returns nodes corresponding to allServiceException - wraps any exception underlying the service call.List<TreeNodeBean> getRoots(List<String> tabs, String uiType) throws ServiceException
ServiceExceptionList<AssetId> getImmediateChildren(String browseUrl) throws ServiceException
browseUrl - a browse urlServiceException - wraps any exception underlying the service call.List<TreeNodeBean> getChildren(String loadUrl) throws ServiceException
loadUrl - A loadUrl is of the following format: command:label:loadURL 
 A code String representing a node.ServiceException - wraps any exception underlying the service call.List<TreeNodeBean> getChildren(String loadUrl, int start) throws ServiceException
loadUrl - A loadUrl is of the following format: command:label:loadURL
 A code String representing a node.start - offset or index of the children nodeServiceException - wraps any exception underlying the service call.