Return-Path: X-Original-To: apmail-incubator-deltaspike-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-deltaspike-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 09410EA0B for ; Sun, 26 May 2013 16:18:34 +0000 (UTC) Received: (qmail 28526 invoked by uid 500); 26 May 2013 16:18:33 -0000 Delivered-To: apmail-incubator-deltaspike-commits-archive@incubator.apache.org Received: (qmail 28481 invoked by uid 500); 26 May 2013 16:18:33 -0000 Mailing-List: contact deltaspike-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: deltaspike-dev@incubator.apache.org Delivered-To: mailing list deltaspike-commits@incubator.apache.org Received: (qmail 28451 invoked by uid 99); 26 May 2013 16:18:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 May 2013 16:18:33 +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; Sun, 26 May 2013 16:18:32 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7325423888E7; Sun, 26 May 2013 16:18:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1486427 - /incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext Date: Sun, 26 May 2013 16:18:12 -0000 To: deltaspike-commits@incubator.apache.org From: gpetracek@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130526161812.7325423888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gpetracek Date: Sun May 26 16:18:12 2013 New Revision: 1486427 URL: http://svn.apache.org/r1486427 Log: updated content Modified: incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext Modified: incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext URL: http://svn.apache.org/viewvc/incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext?rev=1486427&r1=1486426&r2=1486427&view=diff ============================================================================== --- incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext (original) +++ incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext Sun May 26 16:18:12 2013 @@ -677,7 +677,7 @@ By just using `@MySecured` in view-confi It's also possible do register different callback-types per view-meta-data. An example can be found at `ViewControllerRef` which registers different callback-types for `InitView`, `PreViewAction`, `PreRenderView` and `PostRenderView`. In this case it's needed to use the type of the callback (= class of the annotation) as additional parameter for `#getExecutableCallbackDescriptor`. -Creating Custom inline Meta-Data via @InlineViewMetaData +### Creating Custom inline Meta-Data via @InlineViewMetaData This annotation can be used for view-meta-data which can be placed on other classes than view-config-classes. It's used e.g. for `@ViewRef`. Via a `TargetViewConfigProvider` it's possible to point to the view-config the meta-data should get applied to and via `InlineMetaDataTransformer` it's possible to convert it to a different meta-data-representation (which allows that at runtime you only have to support one side since the inline-meta-data was converted to the same meta-data representation which is used for the normal view-meta-data).