From: Vance K. <va...@us...> - 2006-02-06 03:18:55
|
User: vancek Date: 06/02/05 19:18:49 Modified: andromda-ejb3/src/main/resources/templates/ejb3 SessionBeanImpl.vsl Log: added handleRemove implementation called from embeddable superclass remove method that has the @Remove annotation Revision Changes Path 1.7 +9 -0 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.6 retrieving revision 1.7 diff -u -w -r1.6 -r1.7 --- SessionBeanImpl.vsl 29 Jan 2006 01:50:58 -0000 1.6 +++ SessionBeanImpl.vsl 6 Feb 2006 03:18:49 -0000 1.7 @@ -73,4 +73,13 @@ #**##end #end + // ----------- Generic Methods ----------- + + /** + * @see ${service.fullyQualifiedServiceName}#remove()} + */ + protected void handleRemove() + { + //TODO: put your implementation here + } } |