1 Reply Latest reply on Oct 26, 2005 6:55 AM by gavin.king

    Scope of @DataModel

    janbols

      How can I specify the scope of a @DataModel component inside a ejb? F.e. if I have the following stateless ejb, what would be the scope of #{listOfStrings} in my jsf pages?

      @Stateless
      @Interceptor(SeamInterceptor.class)
      public class TestAction implements Test {
       @DataModel private List<String> listOfStrings;
       ...
      }