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;
...
}In the current CVS build, this is possible. It is not possible in the current release.