From: Vance K. <va...@us...> - 2006-01-23 05:49:53
|
User: vancek Date: 06/01/22 21:49:43 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Profile.java Log: extracted noSyntheticCreateMethod to profile Revision Changes Path 1.7 +9 -3 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.6 retrieving revision 1.7 diff -u -w -r1.6 -r1.7 --- EJB3Profile.java 22 Jan 2006 06:23:33 -0000 1.6 +++ EJB3Profile.java 23 Jan 2006 05:49:43 -0000 1.7 @@ -135,10 +135,10 @@ public static final String TAGGEDVALUE_EJB_TRANSACTION_MANAGEMENT = profile.get("SERVICE_TRANSACTION_MANAGEMENT"); /** - * Used in EJB2.x - * May be deprecated in future releases. + * The tagged value indicating whether to not allow synthetic + * (auto generated) create/constructors. */ - public static final String TAGGEDVALUE_EJB_NO_SYNTHETIC_CREATE_METHOD = "@andromda.ejb.noSyntheticCreateMethod"; + public static final String TAGGEDVALUE_EJB_NO_SYNTHETIC_CREATE_METHOD = profile.get("NO_SYNTHETIC_CREATE_METHOD"); /** * The tagged value indicating the finder temporal type. @@ -386,4 +386,10 @@ * Timer Service timeout callback method. */ public static final String TAGGEDVALUE_SERVICE_TIMER_TIMEOUT = profile.get("SERVICE_TIMER_TIMEOUT"); + + /** + * The tagged value indicating the MDB or session bean + * container configuration name specific to JBoss. + */ + public static final String TAGGEDVALUE_EJB_CONTAINER_CONFIGURATION = profile.get("CONTAINER_CONFIGURATION"); } \ No newline at end of file |