From: Vance K. <va...@us...> - 2006-03-16 15:29:20
|
User: vancek Date: 06/03/16 07:29:20 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Profile.java Log: refactored STEREOTYPE_LOB to TAGGEDVALUE_EJB_PERSISTENCE_LOB_TYPE Revision Changes Path 1.21 +5 -5 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.20 retrieving revision 1.21 diff -u -w -r1.20 -r1.21 --- EJB3Profile.java 16 Mar 2006 02:14:14 -0000 1.20 +++ EJB3Profile.java 16 Mar 2006 15:29:20 -0000 1.21 @@ -112,11 +112,6 @@ public static final String STEREOTYPE_SERVICE_TIMER_TIMEOUT = profile.get("SERVICE_TIMER_TIMEOUT"); /** - * Represents a LOB type attribute. - */ - public static final String STEREOTYPE_LOB = profile.get("LOB"); - - /** * The stereotype indicating the finder method parameter result type * is assigned to be the first/index. */ @@ -395,6 +390,11 @@ public static final String TAGGEDVALUE_EJB_PERSISTENCE_FLUSH_MODE = profile.get("SERVICE_PERSISTENCE_FLUSH_MODE"); /** + * The tagged value overriding the default LOB type for attribute. + */ + public static final String TAGGEDVALUE_EJB_PERSISTENCE_LOB_TYPE = profile.get("LOB_TYPE"); + + /** * The tagged value representing the session EJB type (Stateless or Stateful) */ public static final String TAGGEDVALUE_EJB_SESSION_TYPE = profile.get("SERVICE_TYPE"); |