From: Vance K. <va...@us...> - 2006-02-06 03:24:27
|
User: vancek Date: 06/02/05 19:24:19 Modified: andromda-ejb3/src/main/resources/templates/ejb3 SessionListener.vsl Log: changed lifecycle callback method arg to InvocationContext moved 'remove' method with @Remove annotation to entity Revision Changes Path 1.3 +4 -9 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.2 retrieving revision 1.3 diff -u -w -r1.2 -r1.3 --- SessionListener.vsl 17 Jan 2006 03:14:41 -0000 1.2 +++ SessionListener.vsl 6 Feb 2006 03:24:19 -0000 1.3 @@ -19,31 +19,26 @@ } @javax.ejb.PostConstruct - public void postConstruct(${service.fullyQualifiedServiceName} ${stringUtils.uncapitalize(${service.name})}) + public void postConstruct(javax.ejb.InvocationContext ctx) { // post construct implementation } @javax.ejb.PostActivate - public void postActivate(${service.fullyQualifiedServiceName} ${stringUtils.uncapitalize(${service.name})}) + public void postActivate(javax.ejb.InvocationContext ctx) { // post construct implementation } @javax.ejb.PrePassivate - public void prePassivate(${service.fullyQualifiedServiceName} ${stringUtils.uncapitalize(${service.name})}) + public void prePassivate(javax.ejb.InvocationContext ctx) { // pre passivate implementation } @javax.ejb.PreDestroy - public void preDestroy(${service.fullyQualifiedServiceName} ${stringUtils.uncapitalize(${service.name})}) + public void preDestroy(javax.ejb.InvocationContext ctx) { // pre destroy implementation } - - @javax.ejb.Remove - public void remove(${service.fullyQualifiedServiceName} ${stringUtils.uncapitalize(${service.name})}) { - // remove implementation - } } |