Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,17 @@ public static boolean isPersistable(Repo repo) {

/* 1nd level repository: cache (distributed session or sticky) */
public enum Cache {
/**
* <p> Denotes that the domain entity should not participate in caching.
*/
rep_none,

/**
* <p> Denotes that the domain entity should cache at the device level.
* <p> Any domain entity configured with {@link #rep_device} will be
* stored in the session cache.
* @see com.antheminc.oss.nimbus.domain.cmd.exec.internal.DefaultExecutionContextLoader
*/
rep_device;
// rep_user,
// rep_entity;
Expand Down