Class OrgStructurePanelStorage
- java.lang.Object
-
- com.evolveum.midpoint.web.session.OrgStructurePanelStorage
-
- All Implemented Interfaces:
DebugDumpable
,OrgTreeStateStorage
,PageStorage
,Serializable
public class OrgStructurePanelStorage extends Object implements PageStorage, DebugDumpable, OrgTreeStateStorage
Created by honchar.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description OrgStructurePanelStorage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
debugDump()
Show the content of the object intended for diagnostics by system administrator.String
debugDump(int indent)
Set<TreeSelectableBean<OrgType>>
getCollapsedItems()
Set<TreeSelectableBean<OrgType>>
getExpandedItems()
ObjectPaging
getPaging()
Search
getSearch()
TreeSelectableBean<OrgType>
getSelectedItem()
int
getSelectedTabId()
OrgTabPanelStorage
getSelectedTabStorage()
void
setCollapsedItems(TreeStateSet<TreeSelectableBean<OrgType>> collapsedItem)
void
setExpandedItems(TreeStateSet<TreeSelectableBean<OrgType>> expandedItems)
void
setPaging(ObjectPaging membersPanelPaging)
void
setSearch(Search membersPanelSearch)
void
setSelectedItem(TreeSelectableBean<OrgType> selectedItem)
void
setSelectedTabId(int selectedTabId)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDumpLazily, debugDumpLazily
-
-
-
-
Method Detail
-
getPaging
public ObjectPaging getPaging()
- Specified by:
getPaging
in interfacePageStorage
-
setPaging
public void setPaging(ObjectPaging membersPanelPaging)
- Specified by:
setPaging
in interfacePageStorage
-
getSearch
public Search getSearch()
- Specified by:
getSearch
in interfacePageStorage
-
setSearch
public void setSearch(Search membersPanelSearch)
- Specified by:
setSearch
in interfacePageStorage
-
getExpandedItems
public Set<TreeSelectableBean<OrgType>> getExpandedItems()
- Specified by:
getExpandedItems
in interfaceOrgTreeStateStorage
-
setExpandedItems
public void setExpandedItems(TreeStateSet<TreeSelectableBean<OrgType>> expandedItems)
- Specified by:
setExpandedItems
in interfaceOrgTreeStateStorage
-
getSelectedItem
public TreeSelectableBean<OrgType> getSelectedItem()
- Specified by:
getSelectedItem
in interfaceOrgTreeStateStorage
-
setSelectedItem
public void setSelectedItem(TreeSelectableBean<OrgType> selectedItem)
- Specified by:
setSelectedItem
in interfaceOrgTreeStateStorage
-
getCollapsedItems
public Set<TreeSelectableBean<OrgType>> getCollapsedItems()
- Specified by:
getCollapsedItems
in interfaceOrgTreeStateStorage
-
setCollapsedItems
public void setCollapsedItems(TreeStateSet<TreeSelectableBean<OrgType>> collapsedItem)
- Specified by:
setCollapsedItems
in interfaceOrgTreeStateStorage
-
getSelectedTabId
public int getSelectedTabId()
- Specified by:
getSelectedTabId
in interfaceOrgTreeStateStorage
-
setSelectedTabId
public void setSelectedTabId(int selectedTabId)
- Specified by:
setSelectedTabId
in interfaceOrgTreeStateStorage
-
getSelectedTabStorage
public OrgTabPanelStorage getSelectedTabStorage()
-
debugDump
public String debugDump()
Description copied from interface:DebugDumpable
Show the content of the object intended for diagnostics by system administrator. The out put should be suitable to use in system logs at "debug" level. It may be multi-line, but in that case it should be well indented and quite terse. As it is intended to be used by system administrator, it should not use any developer terms such as class names, exceptions or stack traces.- Specified by:
debugDump
in interfaceDebugDumpable
- Returns:
- content of the object intended for diagnostics by system administrator.
-
debugDump
public String debugDump(int indent)
- Specified by:
debugDump
in interfaceDebugDumpable
-
-