2 Replies Latest reply on Apr 7, 2006 2:49 PM by gavin.king

    @Role is buggy (is it?)

    eekboom

      Let me use the registration example to demonstrate the problem.
      The original example works perfectly fine for me.

      However as soon as I change the declaration from

      @Entity
      @Name("user")
      @Scope(SESSION)
      @Table(name="users")
      public class User implements Serializable
      

      to
      @Entity
      @Name("dummy")
      @Scope(SESSION)
      @Role(name = "user", scope = SESSION)
      @Table(name="users")
      public class User implements Serializable
      

      it fails and only shows "Conversion Error" on the JSF page for all fields.

      It should not make a difference if the context variable is declared using @Name or @Role, should it?