[
https://issues.apache.org/jira/browse/DELTASPIKE-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gerhard Petracek resolved DELTASPIKE-336.
-----------------------------------------
Resolution: Fixed
> 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