Class UserProfileStorage
- java.lang.Object
-
- com.evolveum.midpoint.web.session.UserProfileStorage
-
- All Implemented Interfaces:
DebugDumpable
,Serializable
public class UserProfileStorage extends Object implements Serializable, DebugDumpable
- Author:
- shood, Viliam Repan (lazyman)
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
UserProfileStorage.TableId
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_DASHBOARD_PAGING_SIZE
static int
DEFAULT_PAGING_SIZE
static Integer[]
DEFAULT_PAGING_SIZES
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description UserProfileStorage()
-
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)
Integer
getPagingSize(UserProfileStorage.TableId key)
Integer
getPagingSize(String key)
Map<String,Integer>
getTables()
boolean
isExistPagingSize(UserProfileStorage.TableId key)
void
setPagingSize(UserProfileStorage.TableId key, Integer size)
void
setPagingSize(String key, Integer size)
-
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
-
-
-
-
Field Detail
-
DEFAULT_PAGING_SIZE
public static final int DEFAULT_PAGING_SIZE
- See Also:
- Constant Field Values
-
DEFAULT_PAGING_SIZES
public static final Integer[] DEFAULT_PAGING_SIZES
-
DEFAULT_DASHBOARD_PAGING_SIZE
public static final int DEFAULT_DASHBOARD_PAGING_SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getPagingSize
public Integer getPagingSize(UserProfileStorage.TableId key)
-
setPagingSize
public void setPagingSize(UserProfileStorage.TableId key, Integer size)
-
isExistPagingSize
public boolean isExistPagingSize(UserProfileStorage.TableId key)
-
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
-
-