Return-Path: X-Original-To: apmail-incubator-deltaspike-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-deltaspike-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 33A79F4C0 for ; Thu, 28 Mar 2013 23:39:15 +0000 (UTC) Received: (qmail 76871 invoked by uid 500); 28 Mar 2013 23:39:15 -0000 Delivered-To: apmail-incubator-deltaspike-dev-archive@incubator.apache.org Received: (qmail 76815 invoked by uid 500); 28 Mar 2013 23:39:15 -0000 Mailing-List: contact deltaspike-dev-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-dev@incubator.apache.org Received: (qmail 76801 invoked by uid 99); 28 Mar 2013 23:39:14 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Mar 2013 23:39:14 +0000 Date: Thu, 28 Mar 2013 23:39:14 +0000 (UTC) From: "Gerhard Petracek (JIRA)" To: deltaspike-dev@incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (DELTASPIKE-336) support @Stereotype together with @ViewMetaData MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Gerhard Petracek created DELTASPIKE-336: ------------------------------------------- Summary: support @Stereotype together with @ViewMetaData Key: DELTASPIKE-336 URL: https://issues.apache.org/jira/browse/DELTASPIKE-336 Project: DeltaSpike Issue Type: New Feature Components: JSF-Module Affects Versions: 0.4-incubating Reporter: Gerhard Petracek Assignee: Gerhard Petracek Fix For: 0.5-incubating example: @Target({TYPE}) @Retention(RUNTIME) @Documented @Stereotype @ViewMetaData @View(navigation = REDIRECT) @interface FacesRedirect { } -> interface Pages { @FacesRedirect interface Public extends ViewConfig { class Index implements Public { } } } should result in the same as interface Pages { @View(navigation = REDIRECT) interface Public extends ViewConfig { class Index implements Public { } } } that also means interface Pages { @FacesRedirect @View(viewParams = INCLUDE) class Home implements ViewConfig { } } need to get merged to one instance of @View -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira