277278279280281282283284285286287
/** * Integration point for cleanup on undeploy or failed deploy. */ public void clean(DeploymentContext ctx) { CMPProcessor processor = new CMPProcessor(ctx); processor.clean(); } /** * Integration point for application unload */
269270271272273274275276277278279