From: Vance K. <va...@us...> - 2006-03-02 10:28:37
|
User: vancek Date: 06/03/02 02:28:36 Modified: andromda-ejb3/src/main/resources/META-INF/andromda profile.xml Log: defined POST_CONSTRUCT, PRE_DESTROY, POST_ACTIVATE_PRE_PASSIVATE stereotype type elements Revision Changes Path 1.19 +48 -0 cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/profile.xml Index: profile.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/profile.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -w -r1.18 -r1.19 --- profile.xml 25 Feb 2006 14:45:51 -0000 1.18 +++ profile.xml 2 Mar 2006 10:28:35 -0000 1.19 @@ -266,6 +266,54 @@ Entity Finder Method Parameter </appliedOnElement> </element> + <element name="POST_CONSTRUCT"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler and will be invoked when the bean is + first created, after any dependency injection is required. + </documentation> + <value>PostConstruct</value> + <appliedOnElement> + Session and Message-Driven Bean Operation + </appliedOnElement> + </element> + <element name="PRE_DESTROY"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler and will be invoked when the bean is + removed from the pool or destroyed. For stateful session + beans, this occurs before the @Remove annotated method + is invoked. + </documentation> + <value>PreDestroy</value> + <appliedOnElement> + Session and Message-Driven Bean Operation + </appliedOnElement> + </element> + <element name="POST_ACTIVATE"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler for a stateful session bean and will + be invoked when the bean instance has just been + reactivated. + </documentation> + <value>PostActivate</value> + <appliedOnElement> + Stateful Session Bean Operation + </appliedOnElement> + </element> + <element name="PRE_PASSIVATE"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler for a stateful session bean and will + be invoked when container is ready to passivate + the instance. + </documentation> + <value>PrePassivate</value> + <appliedOnElement> + Stateful Session Bean Operation + </appliedOnElement> + </element> </elementGroup> <elementGroup name="Tagged Values"> <element name="ATTRIBUTE_PERSISTENCE_OPTIONAL"> |