[jboss-user] [JBoss Seam] - Re: Problems moving from JBoss 4.0.4GA to 4.0.5GA and Seam 1
akearns@proliphix.com
do-not-reply at jboss.com
Sat Apr 7 12:27:30 EDT 2007
To get my application to deploy I found I also had to change how I use @Name and @Role annotations. I had:
@Entity
@Name("device")
@Roles ({
@Role(name="device", scope=SESSION),
@Role(name="deviceToDelete", scope=CONVERSATION)
})
I had to change it to:
@Entity
@Name("device")
@Roles ({
@Role(name="deviceToDelete", scope=CONVERSATION)
})
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4035533#4035533
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4035533
More information about the jboss-user
mailing list