Return-Path: Delivered-To: apmail-myfaces-dev-archive@www.apache.org Received: (qmail 6886 invoked from network); 27 Sep 2010 10:08:59 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 27 Sep 2010 10:08:59 -0000 Received: (qmail 48250 invoked by uid 500); 27 Sep 2010 10:08:58 -0000 Delivered-To: apmail-myfaces-dev-archive@myfaces.apache.org Received: (qmail 47891 invoked by uid 500); 27 Sep 2010 10:08:55 -0000 Mailing-List: contact dev-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Development" Delivered-To: mailing list dev@myfaces.apache.org Received: (qmail 47883 invoked by uid 99); 27 Sep 2010 10:08:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Sep 2010 10:08:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Sep 2010 10:08:53 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o8RA8W2c029875 for ; Mon, 27 Sep 2010 10:08:32 GMT Message-ID: <11960285.418811285582112897.JavaMail.jira@thor> Date: Mon, 27 Sep 2010 06:08:32 -0400 (EDT) From: "Gerhard Petracek (JIRA)" To: dev@myfaces.apache.org Subject: [jira] Created: (EXTCDI-62) PreViewConfigNavigateEvent for navigation via view configs MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 PreViewConfigNavigateEvent for navigation via view configs ---------------------------------------------------------- Key: EXTCDI-62 URL: https://issues.apache.org/jira/browse/EXTCDI-62 Project: MyFaces CODI Issue Type: New Feature Components: JEE-JSF12-Module, JEE-JSF20-Module Reporter: Gerhard Petracek in case of type-safe navigation via view configs it should be possible to observe navigations which have a view-config for the source-view as well as the target-view. it allows to introduce e.g. further type-safe mechanisms. protected void onViewConfigNavigation(@Observes PreViewConfigNavigateEvent navigateEvent) { if(Wizard.Page1.class.equals(navigateEvent.getFromView()) && !Wizard.Page2.class.equals(navigateEvent.getToView())) { //... } } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.