From: Vance K. <va...@us...> - 2006-03-14 06:11:50
|
User: vancek Date: 06/03/13 22:11:49 Modified: andromda-ejb3/src/main/resources/templates/ejb3 SessionBeanImpl.vsl Log: if stateful session bean, then add remove method implementation handle that has @Remove annotations. Revision Changes Path 1.10 +3 -1 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionBeanImpl.vsl Index: SessionBeanImpl.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionBeanImpl.vsl,v retrieving revision 1.9 retrieving revision 1.10 diff -u -w -r1.9 -r1.10 --- SessionBeanImpl.vsl 5 Mar 2006 05:55:52 -0000 1.9 +++ SessionBeanImpl.vsl 14 Mar 2006 06:11:49 -0000 1.10 @@ -92,8 +92,9 @@ #* *##end #**##end #end +#if ($service.stateful) - // ----------- Generic Methods ----------- + // ----------- Remove Method Impl ----------- /** * @see ${service.fullyQualifiedServiceName}#remove() @@ -102,4 +103,5 @@ { //TODO: put your implementation here } +#end } |