From: Vance K. <va...@us...> - 2006-05-29 01:42:34
|
User: vancek Date: 06/05/28 18:42:33 Modified: andromda-ejb3/src/main/resources/templates/ejb3 MessageDrivenBean.vsl Log: fix packages for PostConstruct and PreDestroy lifecycle methods from javax.ejb to javax.annotation for EJB 3.0 FR Revision Changes Path 1.13 +2 -2 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/MessageDrivenBean.vsl Index: MessageDrivenBean.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/MessageDrivenBean.vsl,v retrieving revision 1.12 retrieving revision 1.13 diff -u -w -r1.12 -r1.13 --- MessageDrivenBean.vsl 24 Apr 2006 02:28:53 -0000 1.12 +++ MessageDrivenBean.vsl 29 May 2006 01:42:33 -0000 1.13 @@ -130,9 +130,9 @@ $operation.getDocumentation(" * ") */ #* *##if ($operation.postConstruct) - @javax.ejb.PostConstruct + @javax.annotation.PostConstruct #* *##elseif ($operation.preDestroy) - @javax.ejb.PreDestroy + @javax.annotation.PreDestroy #* *##end #* *##set ($returnType = $operation.returnType.fullyQualifiedName) #* *##if ($operation.exceptionsPresent) |