From: Vance K. <va...@us...> - 2006-01-03 01:16:00
|
User: vancek Date: 06/01/02 17:15:54 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: added session and security related constants Revision Changes Path 1.2 +158 -28 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -w -r1.1 -r1.2 --- EJB3Globals.java 28 Dec 2005 00:32:56 -0000 1.1 +++ EJB3Globals.java 3 Jan 2006 01:15:54 -0000 1.2 @@ -3,16 +3,161 @@ /** * Stores Globals specific to the EJB3 cartridge. * - * @author Chad Brandon + * @author Vance Karimi */ public class EJB3Globals { /** - * Stores the default EJB transaction type. + * The property that stores the persistence container name. + */ + public static final String PERSISTENCE_CONTAINER = "persistenceContainerName"; + + /** + * The property that stores the default EJB transaction type. */ public static final String TRANSACTION_TYPE = "transactionType"; /** + * The pattern to use for determining the package name for EJBs. + */ + public static final String JNDI_NAME_PREFIX = "jndiNamePrefix"; + + /** + * The property that stores the default entity ID generator type + */ + public static final String ENTITY_DEFAULT_GENERATOR_TYPE = "entityDefaultGeneratorType"; + + /** + * The property that stores the default generator initial value + */ + public static final String ENTITY_DEFAULT_GENERATOR_INITIAL_VALUE = "entityDefaultGeneratorInitialValue"; + + /** + * The property that stores the default generator allocation size for incrementing ids + */ + public static final String ENTITY_DEFAULT_GENERATOR_ALLOCATION_SIZE = "entityDefaultGeneratorAllocationSize"; + + /** + * The property that stores the default entity association optional attribute for Many-to-One and One-to-One + */ + public static final String ENTITY_DEFAULT_ASSOCIATION_OPTIONAL = "entityDefaultAssociationOptional"; + + /** + * Stores whether or not named parameters should be used in EJB queries. + */ + public static final String QUERY_USE_NAMED_PARAMETERS = "queryUseNamedParameters"; + + /** + * The default composite association cascade property + */ + public static final String ENTITY_DEFAULT_COMPOSITE_CASCADE = "entityCompositeCascade"; + + /** + * The default aggregation association cascade property + */ + public static final String ENTITY_DEFAULT_AGGREGATION_CASCADE = "entityAggergationCascade"; + + /** + * The default view type accessability for an entity POJO bean + */ + public static final String ENTITY_DEFAULT_VIEW_TYPE = "entityViewType"; + + /** + * The default view type accessability for the session bean + */ + public static final String SESSION_DEFAULT_VIEW_TYPE = "serviceViewType"; + + /** + * Represents the eager fetch type + */ + public static final String FETCH_TYPE_EAGER = "EAGER"; + + /** + * Represents the lazy fetch type + */ + public static final String FETCH_TYPE_LAZY = "LAZY"; + + /** + * Represents the clob lob type + */ + public static final String LOB_TYPE_CLOB = "CLOB"; + + /** + * Represents the blob lob type + */ + public static final String LOB_TYPE_BLOB = "BLOB"; + + /** + * Represents the table generator type + */ + public static final String GENERATOR_TYPE_TABLE = "TABLE"; + + /** + * Represents the sequence generator type + */ + public static final String GENERATOR_TYPE_SEQUENCE = "SEQUENCE"; + + /** + * Represents the identity generator type + */ + public static final String GENERATOR_TYPE_IDENTITY = "IDENTITY"; + + /** + * Represents the auto generator type + */ + public static final String GENERATOR_TYPE_AUTO = "AUTO"; + + /** + * Represents the none generator type + */ + public static final String GENERATOR_TYPE_NONE = "NONE"; + + /** + * Represents the date temporal type + */ + public static final String TEMPORAL_TYPE_DATE = "DATE"; + + /** + * Represents the time temporal type + */ + public static final String TEMPORAL_TYPE_TIME = "TIME"; + + /** + * Represents the timestamp temporal type + */ + public static final String TEMPORAL_TYPE_TIMESTAMP = "TIMESTAMP"; + + /** + * Represents the none temporal type + */ + public static final String TEMPORAL_TYPE_NONE = "NONE"; + + /** + * Represents the finder method index type on the parameter + */ + public static final String FINDER_RESULT_TYPE_FIRST = "First"; + + /** + * Represents the finder method max count on the parameter + */ + public static final String FINDER_RESULT_TYPE_MAX = "Max"; + + /** + * Represents the view type for the entity POJO as both remote and local + */ + public static final String VIEW_TYPE_BOTH = "both"; + + /** + * Represents the local view type for the entity POJO + */ + public static final String VIEW_TYPE_LOCAL = "local"; + + /** + * Represents the remote view type for the entity POJO + */ + public static final String VIEW_TYPE_REMOTE = "remote"; + + /** * Represents the mandatory transaction type */ public static final String TRANSACTION_TYPE_MANDATORY = "Manadatory"; @@ -43,42 +188,27 @@ public static final String TRANSACTION_TYPE_SUPPORTS = "Supports"; /** - * The pattern to use for determining the package name for EJBs. - */ - public static final String JNDI_NAME_PREFIX = "jndiNamePrefix"; - - /** - * The property that stores the default entity ID generator type - */ - public static final String ENTITY_DEFAULT_GENERATOR_TYPE = "entityDefaultGeneratorType"; - - /** - * The property that stores the default generator initial value - */ - public static final String ENTITY_DEFAULT_GENERATOR_INITIAL_VALUE = "entityDefaultGeneratorInitialValue"; - - /** - * The property that stores the default generator allocation size for incrementing ids + * Represents the stateless session bean */ - public static final String ENTITY_DEFAULT_GENERATOR_ALLOCATION_SIZE = "entityDefaultGeneratorAllocationSize"; + public static final String SERVICE_TYPE_STATELESS = "Stateless"; /** - * The property that stores the default entity association optional attribute for Many-to-One and One-to-One + * Represents the stateful session bean */ - public static final String ENTITY_DEFAULT_ASSOCIATION_OPTIONAL = "entityDefaultAssociationOptional"; + public static final String SERVICE_TYPE_STATEFUL = "Stateful"; /** - * Stores whether or not named parameters should be used in EJB queries. + * Represents the JBoss persistence container constant */ - public static final String QUERY_USE_NAMED_PARAMETERS = "queryUseNamedParameters"; + public static final String PERSISTENCE_CONTAINER_JBOSS = "jboss"; /** - * The default composite association cascade property + * Represents the Weblogic persistence container contant */ - public static final String ENTITY_DEFAULT_COMPOSITE_CASCADE = "entityCompositeCascade"; + public static final String PERSISTENCE_CONTAINER_WEBLOGIC = "weblogic"; /** - * The default aggregation association cascade property + * Represents the default security domain */ - public static final String ENTITY_DEFAULT_AGGREGATION_CASCADE = "entityAggergationCascade"; + public static final String SECURITY_DOMAIN = "securityDomain"; } |
From: Vance K. <va...@us...> - 2006-01-17 04:08:51
|
User: vancek Date: 06/01/16 20:08:45 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: changed SECURITY_DOMAIN to SECURITY_REALM Revision Changes Path 1.4 +1 -1 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -w -r1.3 -r1.4 --- EJB3Globals.java 6 Jan 2006 13:54:28 -0000 1.3 +++ EJB3Globals.java 17 Jan 2006 04:08:45 -0000 1.4 @@ -210,7 +210,7 @@ /** * Represents the default security domain */ - public static final String SECURITY_DOMAIN = "securityDomain"; + public static final String SECURITY_REALM = "securityRealm"; /** * Represents the bean managed transaction demarcation |
From: Vance K. <va...@us...> - 2006-01-25 02:56:20
|
User: vancek Date: 06/01/24 18:56:14 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: refactored static variables to specific facade implementation classes Revision Changes Path 1.5 +0 -49 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -w -r1.4 -r1.5 --- EJB3Globals.java 17 Jan 2006 04:08:45 -0000 1.4 +++ EJB3Globals.java 25 Jan 2006 02:56:14 -0000 1.5 @@ -7,10 +7,6 @@ */ public class EJB3Globals { - /** - * The property that stores the persistence container name. - */ - public static final String PERSISTENCE_CONTAINER = "persistenceContainerName"; /** * The property that stores the default EJB transaction type. @@ -23,51 +19,6 @@ public static final String JNDI_NAME_PREFIX = "jndiNamePrefix"; /** - * The property that stores the default entity ID generator type - */ - public static final String ENTITY_DEFAULT_GENERATOR_TYPE = "entityDefaultGeneratorType"; - - /** - * The property that stores the default generator initial value - */ - public static final String ENTITY_DEFAULT_GENERATOR_INITIAL_VALUE = "entityDefaultGeneratorInitialValue"; - - /** - * The property that stores the default generator allocation size for incrementing ids - */ - public static final String ENTITY_DEFAULT_GENERATOR_ALLOCATION_SIZE = "entityDefaultGeneratorAllocationSize"; - - /** - * The property that stores the default entity association optional attribute for Many-to-One and One-to-One - */ - public static final String ENTITY_DEFAULT_ASSOCIATION_OPTIONAL = "entityDefaultAssociationOptional"; - - /** - * Stores whether or not named parameters should be used in EJB queries. - */ - public static final String QUERY_USE_NAMED_PARAMETERS = "queryUseNamedParameters"; - - /** - * The default composite association cascade property - */ - public static final String ENTITY_DEFAULT_COMPOSITE_CASCADE = "entityCompositeCascade"; - - /** - * The default aggregation association cascade property - */ - public static final String ENTITY_DEFAULT_AGGREGATION_CASCADE = "entityAggergationCascade"; - - /** - * The default view type accessability for an entity POJO bean - */ - public static final String ENTITY_DEFAULT_VIEW_TYPE = "entityViewType"; - - /** - * The default view type accessability for the session bean - */ - public static final String SESSION_DEFAULT_VIEW_TYPE = "serviceViewType"; - - /** * Represents the eager fetch type */ public static final String FETCH_TYPE_EAGER = "EAGER"; |
From: Vance K. <va...@us...> - 2006-02-17 02:36:31
|
User: vancek Date: 06/02/16 18:36:29 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: added comment Revision Changes Path 1.6 +2 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -w -r1.5 -r1.6 --- EJB3Globals.java 25 Jan 2006 02:56:14 -0000 1.5 +++ EJB3Globals.java 17 Feb 2006 02:36:29 -0000 1.6 @@ -18,6 +18,8 @@ */ public static final String JNDI_NAME_PREFIX = "jndiNamePrefix"; + // --------------- Constants --------------------- + /** * Represents the eager fetch type */ |
From: Vance K. <va...@us...> - 2006-02-20 05:18:11
|
User: vancek Date: 06/02/19 21:18:09 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: defined LABEL_COLLECTION_NAME_PATTERN and LABEL_SINGLE_NAME_PATTERN statics Revision Changes Path 1.7 +12 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -w -r1.6 -r1.7 --- EJB3Globals.java 17 Feb 2006 02:36:29 -0000 1.6 +++ EJB3Globals.java 20 Feb 2006 05:18:09 -0000 1.7 @@ -18,6 +18,18 @@ */ public static final String JNDI_NAME_PREFIX = "jndiNamePrefix"; + /** + * The property which stores the pattern defining the display attribute + * label name when it's of type Collection. + */ + public static final String LABEL_COLLECTION_NAME_PATTERN = "labelCollectionNamePattern"; + + /** + * The property which stores the pattern defining the display attribute + * label name when it's not of type Collection. + */ + public static final String LABEL_SINGLE_NAME_PATTERN = "labelSingleNamePattern"; + // --------------- Constants --------------------- /** |
From: Vance K. <va...@us...> - 2006-04-11 16:07:58
|
User: vancek Date: 06/04/11 09:07:51 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: declared namespace delimiter constant Revision Changes Path 1.8 +5 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -w -r1.7 -r1.8 --- EJB3Globals.java 20 Feb 2006 05:18:09 -0000 1.7 +++ EJB3Globals.java 11 Apr 2006 16:07:50 -0000 1.8 @@ -198,4 +198,9 @@ * JMS message driven bean */ public static final String MDB_DESTINATION_TYPE_QUEUE = "javax.jms.Queue"; + + /** + * The namespace delimiter (seperates namespaces). + */ + public static final char NAMESPACE_DELIMITER = '.'; } |
From: Vance K. <va...@us...> - 2006-04-24 02:45:00
|
User: vancek Date: 06/04/23 19:44:59 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: added DAO related constants (pattern names and transformation constants). refactored PERSISTENCE_CONTEXT_UNIT_NAME constant to here. Revision Changes Path 1.9 +31 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -w -r1.8 -r1.9 --- EJB3Globals.java 11 Apr 2006 16:07:50 -0000 1.8 +++ EJB3Globals.java 24 Apr 2006 02:44:59 -0000 1.9 @@ -203,4 +203,35 @@ * The namespace delimiter (seperates namespaces). */ public static final char NAMESPACE_DELIMITER = '.'; + + /** + * Defines the prefix given to the transformation constants. + */ + public final static String TRANSFORMATION_CONSTANT_PREFIX = "TRANSFORM_"; + + /** + * The suffix given to the no transformation constant. + */ + public static final String NO_TRANSFORMATION_CONSTANT_SUFFIX = "NONE"; + + /** + * The prefix given to transformation method names. + */ + public static final String TRANSFORMATION_METHOD_PREFIX = "to"; + + /** + * The suffix given to transformation method names. + */ + public static final String TRANSFORMATION_TO_COLLECTION_METHOD_SUFFIX = "Collection"; + + /** + * The pattern used to construct the DAO name. + */ + public static final String DAO_PATTERN = "daoNamePattern"; + + /** + * The property which stores the persistence context unit name associated with the default + * Entity Manager. + */ + public static final String PERSISTENCE_CONTEXT_UNIT_NAME = "persistenceContextUnitName"; } |
From: Vance K. <va...@us...> - 2006-04-30 01:54:48
|
User: vancek Date: 06/04/29 18:54:47 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades EJB3SessionOperationFacadeLogicImpl.java andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: refactored SERVICE_IMPLEMENTATION_OPERATION_NAME_PATTERN constant from EJB3SessionOperationFacadeLogicImpl & extract to EJB3Globals as IMPLEMENATION_OPERATION_NAME_PATTERN used by session and entity (DAO) operations Revision Changes Path 1.11 +2 -8 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades/EJB3SessionOperationFacadeLogicImpl.java Index: EJB3SessionOperationFacadeLogicImpl.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades/EJB3SessionOperationFacadeLogicImpl.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -w -r1.10 -r1.11 --- EJB3SessionOperationFacadeLogicImpl.java 9 Mar 2006 04:46:26 -0000 1.10 +++ EJB3SessionOperationFacadeLogicImpl.java 30 Apr 2006 01:54:47 -0000 1.11 @@ -29,12 +29,6 @@ public class EJB3SessionOperationFacadeLogicImpl extends EJB3SessionOperationFacadeLogic { - /** - * The property used to specify the implementation operation name pattern - * on service beans. - */ - public static final String SERVICE_IMPLEMENTATION_OPERATION_NAME_PATTERN = - "serviceImplementationOperationNamePattern"; public EJB3SessionOperationFacadeLogicImpl (Object metaObject, String context) { @@ -308,7 +302,7 @@ /** * Retrieves the implementationOperatName by replacing the <code>replacement</code> in the {@link - * SERVICE_IMPLEMENTATION_OPERATION_NAME_PATTERN} + * EJB3Globals#IMPLEMENTATION_OPERATION_NAME_PATTERN} * * @param replacement the replacement string for the pattern. * @return the operation name @@ -316,7 +310,7 @@ private String getImplementationOperationName(String replacement) { String implementationNamePattern = - (String)this.getConfiguredProperty(SERVICE_IMPLEMENTATION_OPERATION_NAME_PATTERN); + (String)this.getConfiguredProperty(EJB3Globals.IMPLEMENTATION_OPERATION_NAME_PATTERN); return MessageFormat.format( implementationNamePattern, 1.10 +7 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -w -r1.9 -r1.10 --- EJB3Globals.java 24 Apr 2006 02:44:59 -0000 1.9 +++ EJB3Globals.java 30 Apr 2006 01:54:47 -0000 1.10 @@ -234,4 +234,11 @@ * Entity Manager. */ public static final String PERSISTENCE_CONTEXT_UNIT_NAME = "persistenceContextUnitName"; + + /** + * The property used to specify the implementation operation name pattern + * on service and entity beans. + */ + public static final String IMPLEMENTATION_OPERATION_NAME_PATTERN = + "implementationOperationNamePattern"; } |
From: Vance K. <va...@us...> - 2006-05-15 12:30:18
|
User: vancek Date: 06/05/15 05:30:17 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades EJB3FinderMethodFacadeLogicImpl.java EJB3EntityFacadeLogicImpl.java andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: fixed the check for useQueryCache in EJB3FinderMethodFacade to lookup the EJB3EntityFacade useQueryCache Revision Changes Path 1.9 +1 -1 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades/EJB3FinderMethodFacadeLogicImpl.java Index: EJB3FinderMethodFacadeLogicImpl.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades/EJB3FinderMethodFacadeLogicImpl.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -w -r1.8 -r1.9 --- EJB3FinderMethodFacadeLogicImpl.java 26 Apr 2006 15:23:44 -0000 1.8 +++ EJB3FinderMethodFacadeLogicImpl.java 15 May 2006 12:30:17 -0000 1.9 @@ -84,7 +84,7 @@ */ protected boolean handleIsUseQueryCache() { - boolean queryCacheEnabled = false; + boolean queryCacheEnabled = ((EJB3EntityFacade)this.getOwner()).isUseQueryCache(); String queryCacheEnabledStr = (String)findTaggedValue(EJB3Profile.TAGGEDVALUE_EJB_USE_QUERY_CACHE); if (StringUtils.isNotBlank(queryCacheEnabledStr)) { 1.23 +10 -1 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades/EJB3EntityFacadeLogicImpl.java Index: EJB3EntityFacadeLogicImpl.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades/EJB3EntityFacadeLogicImpl.java,v retrieving revision 1.22 retrieving revision 1.23 diff -u -w -r1.22 -r1.23 --- EJB3EntityFacadeLogicImpl.java 2 May 2006 01:59:49 -0000 1.22 +++ EJB3EntityFacadeLogicImpl.java 15 May 2006 12:30:17 -0000 1.23 @@ -1122,7 +1122,7 @@ return BooleanUtils.toBoolean(String.valueOf(this.getConfiguredProperty(HIBERNATE_ENABLE_CACHE))); } - /*( + /** * @see org.andromda.cartridges.ejb3.metafacades.EJB3EntityFacadeLogic#handleIsUseDefaultCacheRegion() */ protected boolean handleIsUseDefaultCacheRegion() @@ -1583,5 +1583,14 @@ return allRoles; } + /** + * @see org.andromda.cartridges.ejb3.metafacades.EJB3EntityFacadeLogic#handleIsUseQueryCache() + */ + protected boolean handleIsUseQueryCache() + { + return BooleanUtils.toBoolean( + String.valueOf(this.getConfiguredProperty(EJB3Globals.HIBERNATE_USER_QUERY_CACHE))); + } + } \ No newline at end of file 1.11 +5 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -w -r1.10 -r1.11 --- EJB3Globals.java 30 Apr 2006 01:54:47 -0000 1.10 +++ EJB3Globals.java 15 May 2006 12:30:17 -0000 1.11 @@ -241,4 +241,9 @@ */ public static final String IMPLEMENTATION_OPERATION_NAME_PATTERN = "implementationOperationNamePattern"; + + /** + * The property used to specify whether to enable query cache. + */ + public static final String HIBERNATE_USER_QUERY_CACHE = "hibernateUseQueryCache"; } |