Skip to content

Commit

Permalink
SEAMFACES-106: Move @RenderScoped to org.jboss.seam.faces.context
Browse files Browse the repository at this point in the history
  • Loading branch information
bleathem committed Mar 23, 2011
1 parent d866413 commit f03c77b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
@@ -1,4 +1,4 @@
package javax.faces.bean;
package org.jboss.seam.faces.context;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/src/main/docbook/en-US/faces-scopes.xml
Expand Up @@ -24,7 +24,7 @@
</para>

<para>
To place a bean in the Render scope, use the <literal>@javax.faces.bean.RenderScoped</literal> annotation. This means that your
To place a bean in the Render scope, use the <literal>@org.jboss.seam.faces.context.RenderScoped</literal> annotation. This means that your
bean will be stored in the <literal>org.jboss.seam.context.RenderContext</literal> object until the next page is rendered,
at which point the RenderScope will be cleared.
</para>
Expand Down
Expand Up @@ -13,7 +13,6 @@
import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.Produces;
import javax.enterprise.inject.spi.BeanManager;
import javax.faces.bean.RenderScoped;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.faces.event.PhaseEvent;
Expand Down
Expand Up @@ -4,7 +4,6 @@
import javax.enterprise.inject.spi.AfterBeanDiscovery;
import javax.enterprise.inject.spi.BeforeBeanDiscovery;
import javax.enterprise.inject.spi.Extension;
import javax.faces.bean.RenderScoped;

/**
* An extension to provide {@link RenderScoped} CDI / JSF 2 integration.
Expand Down

0 comments on commit f03c77b

Please sign in to comment.