From: Vance K. <va...@us...> - 2006-02-09 07:16:17
|
User: vancek Date: 06/02/08 23:16:10 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Profile.java Log: defined column insert nad column update tagged value constants Revision Changes Path 1.13 +12 -0 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.12 retrieving revision 1.13 diff -u -w -r1.12 -r1.13 --- EJB3Profile.java 8 Feb 2006 10:15:28 -0000 1.12 +++ EJB3Profile.java 9 Feb 2006 07:16:07 -0000 1.13 @@ -248,6 +248,18 @@ public static final String TAGGEDVALUE_PERSISTENCE_COLUMN_NULLABLE = profile.get("COLUMN_NULLABLE"); /** + * The tagged value that specifies whether a mapped column should be + * included in SQL INSERT statements. + */ + public static final String TAGGEDVALUE_PERSISTENCE_COLUMN_INSERT = profile.get("COLUMN_INSERT"); + + /** + * The tagged value that specifies whether a mapped column should be included + * in SQL UPDATE statements. + */ + public static final String TAGGEDVALUE_PERSISTENCE_COLUMN_UPDATE = profile.get("COLUMN_UPDATE"); + + /** * The tagged value that indicates the order by logic on the * Many side of the One-to-Many and Many-to-Many relationships. */ |