org.jboss.dashboard.ui.panel.PanelDriver.beforePanelInstanceRemove(PanelInstance, Session)
use the version without session, and create your txFragment if needed.
|
org.jboss.dashboard.workspace.Section.deletePanel(Panel)
Use removePanel instead.
|
org.jboss.dashboard.workspace.WorkspacesManager.getAvailableWorkspacesIds()
Workspaces manager shouldn't be aware of current user status.
|
org.jboss.dashboard.ui.SessionManager.getCurrentLocale()
Use LocaleManager instead
|
org.jboss.dashboard.ui.SessionManager.getCurrentPanel() |
org.jboss.dashboard.workspace.Panel.getId()
Use getPanelId instead.
|
org.jboss.dashboard.ui.SessionManager.getLang()
Use LocaleManager instead
|
org.jboss.dashboard.ui.taglib.LinkToWorkspaceTag.getLink(HttpServletRequest, HttpServletResponse, String)
use URLMarkupGenerator methods directly
|
org.jboss.dashboard.ui.taglib.LocalizeTag.getLocalizedValue(Map, String, boolean)
Use the LocaleManager to access localization of resources
|
org.jboss.dashboard.workspace.Section.getPanels(LayoutRegion)
Use getSectionRegion to obtain SectionRegion instance and then use the methods
defined into that class.
|
org.jboss.dashboard.workspace.Section.getPanelsCount(LayoutRegion)
Use getSectionRegion to obtain SectionRegion instance and then use the methods
defined into that class.
|
org.jboss.dashboard.ui.panel.PanelDriver.getPanelSession(CommandRequest, Panel)
use getPanelSession(Panel panel)
|
org.jboss.dashboard.ui.panel.PanelDriver.getPanelSession(HttpServletRequest, Panel)
use getPanelSession(Panel panel)
|
org.jboss.dashboard.workspace.Section.getPanelsStyleSheets()
Provider will no longer have an StyleSheet.
|
org.jboss.dashboard.ui.controller.CommandRequest.getParameter(String)
Access request object directly
|
org.jboss.dashboard.ui.controller.CommandRequestImpl.getParameterNames()
Access request object directly
|
org.jboss.dashboard.workspace.PanelProviderParameter.getScope()
scope is not implemented
|
org.jboss.dashboard.ui.panel.PanelDriver.getURLWhenMaximized(PanelSession)
It is of no practical use
|
org.jboss.dashboard.workspace.Section.isFirstPanelInRegion(Panel, LayoutRegion)
Use getSectionRegion to obtain SectionRegion instance and then use the methods
defined into that class.
|
org.jboss.dashboard.workspace.Section.isLastPanelInRegion(Panel, LayoutRegion)
Use getSectionRegion to obtain SectionRegion instance and then use the methods
defined into that class.
|
org.jboss.dashboard.workspace.Section.isOnlyPanelInRegion(Panel, LayoutRegion)
Use getSectionRegion to obtain SectionRegion instance and then use the methods
defined into that class.
|
org.jboss.dashboard.workspace.Section.moveBackInRegion(Panel)
Use getSectionRegion to obtain SectionRegion instance and then use the methods
defined into that class.
|
org.jboss.dashboard.workspace.Section.moveForwardInRegion(Panel)
Use getSectionRegion to obtain SectionRegion instance and then use the methods
defined into that class.
|
org.jboss.dashboard.workspace.Section.removePanelFromRegion(Panel)
Use getSectionRegion to obtain SectionRegion instance and then use the methods
defined into that class.
|
org.jboss.dashboard.ui.utils.javascriptUtils.JavascriptTree.replaceTildes(String)
Use StringEscapeUtils.escapeHtml(s)
|
org.jboss.dashboard.workspace.PanelInstance.restore()
Now panel persistence is stored as a String property of PanelInstance.
This method has a void implementation but is not removed in order to keep interface .
|
org.jboss.dashboard.ui.SessionManager.setCurrentPanel(Panel) |
org.jboss.dashboard.ui.SessionManager.setCurrentPanel(PanelInstance) |
org.jboss.dashboard.workspace.Panel.setId(String)
Use setPanelId instead.
|
org.jboss.dashboard.ui.taglib.BundleTag.setLocaleAttribute(String) |
org.jboss.dashboard.workspace.PanelProviderParameter.setScope(int)
scope is not implemented
|