Return-Path: X-Original-To: apmail-deltaspike-commits-archive@www.apache.org Delivered-To: apmail-deltaspike-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 18EEE10480 for ; Sat, 15 Feb 2014 11:48:10 +0000 (UTC) Received: (qmail 6947 invoked by uid 500); 15 Feb 2014 11:48:09 -0000 Delivered-To: apmail-deltaspike-commits-archive@deltaspike.apache.org Received: (qmail 6904 invoked by uid 500); 15 Feb 2014 11:48:07 -0000 Mailing-List: contact commits-help@deltaspike.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@deltaspike.apache.org Delivered-To: mailing list commits@deltaspike.apache.org Received: (qmail 6896 invoked by uid 99); 15 Feb 2014 11:48:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Feb 2014 11:48:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Feb 2014 11:48:06 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E89F92388860; Sat, 15 Feb 2014 11:47:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1568618 - /deltaspike/site/trunk/content/jsf.mdtext Date: Sat, 15 Feb 2014 11:47:45 -0000 To: commits@deltaspike.apache.org From: tandraschko@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140215114745.E89F92388860@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tandraschko Date: Sat Feb 15 11:47:45 2014 New Revision: 1568618 URL: http://svn.apache.org/r1568618 Log: docu for SystemEvent broadcasting Modified: deltaspike/site/trunk/content/jsf.mdtext Modified: deltaspike/site/trunk/content/jsf.mdtext URL: http://svn.apache.org/viewvc/deltaspike/site/trunk/content/jsf.mdtext?rev=1568618&r1=1568617&r2=1568618&view=diff ============================================================================== --- deltaspike/site/trunk/content/jsf.mdtext (original) +++ deltaspike/site/trunk/content/jsf.mdtext Sat Feb 15 11:47:45 2014 @@ -1242,12 +1242,13 @@ Following JSF SystemEvents can be observ - javax.faces.event.PreDestroyApplicationEvent - javax.faces.event.ExceptionQueuedEvent +Example: :::java @ApplicationScoped public class ApplicationConfig { - public void init(@Observers PostConstructApplicationEvent event) + public void init(@Observes PostConstructApplicationEvent event) { // ... }