From: Vance K. <va...@us...> - 2006-03-14 06:20:42
|
User: vancek Date: 06/03/13 22:20:41 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Profile.java Log: declared cache related tagged value constants Revision Changes Path 1.19 +15 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Profile.java Index: EJB3Profile.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Profile.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -w -r1.18 -r1.19 --- EJB3Profile.java 9 Mar 2006 04:38:11 -0000 1.18 +++ EJB3Profile.java 14 Mar 2006 06:20:41 -0000 1.19 @@ -492,4 +492,19 @@ public static final String TAGGEDVALUE_SERVICE_INTERCEPTOR_EXCLUDE_CLASS = profile.get("EXCLUDE_CLASS_INTERCEPTORS"); + /** + * Defines the cache type for the Entity. + */ + public static final String TAGGEDVALUE_HIBERNATE_ENTITY_CACHE = profile.get("ENTITY_CACHE"); + + /** + * Defines the cache type for a relationship collection. + */ + public static final String TAGGEDVALUE_HIBERNATE_ASSOCIATION_CACHE = profile.get("ASSOCIATION_CACHE"); + + /** + * Defines whether query cache is enable for query. + */ + public static final String TAGGEDVALUE_EJB_USE_QUERY_CACHE = profile.get("USE_QUERY_CACHE"); + } \ No newline at end of file |