diff --git a/nimbus-core/src/main/java/com/antheminc/oss/nimbus/domain/defn/Repo.java b/nimbus-core/src/main/java/com/antheminc/oss/nimbus/domain/defn/Repo.java index 72ef90ad0..09d0c1ed0 100644 --- a/nimbus-core/src/main/java/com/antheminc/oss/nimbus/domain/defn/Repo.java +++ b/nimbus-core/src/main/java/com/antheminc/oss/nimbus/domain/defn/Repo.java @@ -55,7 +55,17 @@ public static boolean isPersistable(Repo repo) { /* 1nd level repository: cache (distributed session or sticky) */ public enum Cache { + /** + *
Denotes that the domain entity should not participate in caching. + */ rep_none, + + /** + *
Denotes that the domain entity should cache at the device level. + *
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;