From: Vance K. <va...@us...> - 2006-01-18 08:45:41
|
User: vancek Date: 06/01/18 00:45:33 Modified: andromda-ejb3/src/main/resources/templates/ejb3 Entity.vsl Log: getAttributesAsList method contains extra args to determine if to include identifiers if composite primary key exsits Revision Changes Path 1.5 +2 -2 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/Entity.vsl Index: Entity.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/Entity.vsl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -w -r1.4 -r1.5 --- Entity.vsl 17 Jan 2006 04:12:54 -0000 1.4 +++ Entity.vsl 18 Jan 2006 08:45:33 -0000 1.5 @@ -51,9 +51,9 @@ * @param $attribute.name Value for the ${attribute.name} property #end */ - public ${entity.entityName}($entity.getAttributesAsList($allAttributes, true, true)) + public ${entity.entityName}($entity.getAttributesAsList($allAttributes, true, true, false)) { - super($entity.getAttributesAsList($allAttributes, false, true)); + super($entity.getAttributesAsList($allAttributes, false, true, false)); } #foreach ($operation in $entity.getCreateMethods(true)) |