From: Vance K. <va...@us...> - 2006-03-16 02:14:21
|
User: vancek Date: 06/03/15 18:14:19 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Profile.java Log: removed STEREOTYPE_TRANSIENT declaration. refactored STEREOTYPE_DEFAULT_INTERCEPTOR to TAGGEDVALUE_DEFAULT_INTERCEPTOR. Revision Changes Path 1.20 +5 -10 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.19 retrieving revision 1.20 diff -u -w -r1.19 -r1.20 --- EJB3Profile.java 14 Mar 2006 06:20:41 -0000 1.19 +++ EJB3Profile.java 16 Mar 2006 02:14:14 -0000 1.20 @@ -63,11 +63,6 @@ public static final String STEREOTYPE_VERSION = profile.get("VERSION"); /** - * Represents a transient entity attribute - non persistent. - */ - public static final String STEREOTYPE_TRANSIENT = profile.get("TRANSIENT"); - - /** * Represents a reference to a value object - used in EJB2.x * This may be deprecated in furture releases. */ @@ -99,11 +94,6 @@ public static final String STEREOTYPE_INTERCEPTOR = profile.get("INTERCEPTOR"); /** - * Represents a default interceptor for a session or message-driven bean. - */ - public static final String STEREOTYPE_DEFAULT_INTERCEPTOR = profile.get("DEFAULT_INTERCEPTOR"); - - /** * Represents a dependency from an actor that is identified to * apply a run-as identity to the bean when making calls. */ @@ -493,6 +483,11 @@ profile.get("EXCLUDE_CLASS_INTERCEPTORS"); /** + * Defines a default interceptor for a session or message-driven bean. + */ + public static final String TAGGEDVALUE_DEFAULT_INTERCEPTOR = profile.get("DEFAULT_INTERCEPTOR"); + + /** * Defines the cache type for the Entity. */ public static final String TAGGEDVALUE_HIBERNATE_ENTITY_CACHE = profile.get("ENTITY_CACHE"); |