From: Vance K. <va...@us...> - 2006-04-11 15:44:25
|
User: vancek Date: 06/04/11 08:44:24 Modified: andromda-ejb3/src/main/resources/templates/ejb3 SessionListener.vsl Log: changed package locations for PostConstruct and PreDestroy to javax.annotation Revision Changes Path 1.6 +2 -2 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionListener.vsl Index: SessionListener.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionListener.vsl,v retrieving revision 1.5 retrieving revision 1.6 diff -u -w -r1.5 -r1.6 --- SessionListener.vsl 9 Mar 2006 04:32:03 -0000 1.5 +++ SessionListener.vsl 11 Apr 2006 15:44:24 -0000 1.6 @@ -19,7 +19,7 @@ // empty constructor } - @javax.ejb.PostConstruct + @javax.annotation.PostConstruct public void postConstruct(javax.ejb.InvocationContext ctx) { try @@ -33,7 +33,7 @@ } } - @javax.ejb.PreDestroy + @javax.annotation.PreDestroy public void preDestroy(javax.ejb.InvocationContext ctx) { try |