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"; |