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 A746BF3D3 for ; Sat, 27 Apr 2013 01:15:13 +0000 (UTC) Received: (qmail 30930 invoked by uid 500); 27 Apr 2013 01:15:13 -0000 Delivered-To: apmail-incubator-deltaspike-dev-archive@incubator.apache.org Received: (qmail 30883 invoked by uid 500); 27 Apr 2013 01:15:13 -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 30874 invoked by uid 99); 27 Apr 2013 01:15:13 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Apr 2013 01:15:13 +0000 Date: Sat, 27 Apr 2013 01:15:13 +0000 (UTC) From: "Gerhard Petracek (JIRA)" To: deltaspike-dev@incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (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 [ https://issues.apache.org/jira/browse/DELTASPIKE-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gerhard Petracek updated DELTASPIKE-336: ---------------------------------------- Description: example: @Target({TYPE}) @Retention(RUNTIME) @Documented @Stereotype @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 was: 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 > 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 > Reporter: Gerhard Petracek > Assignee: Gerhard Petracek > Fix For: 0.4-incubating > > > example: > @Target({TYPE}) > @Retention(RUNTIME) > @Documented > @Stereotype > @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