1 Reply Latest reply on Jan 14, 2008 6:36 PM by pmuir

    Scoped datamodel

    earniedyke

      Greetings all,

      If I have the following class:

      @Stateful
      @Scope(SESSION)
      @Name("conferenceManager")
      public class ConferenceManager implements ConferenceManagerLocal, Serializable {
      
       @DataModelSelection("administerableConferences")
       @Out(required = false, scope = PAGE)
       private Conference administerableConference;
      
       @DataModel
       @Out(required = false, scope = PAGE)
       private List<Conference> administerableConferences;
      
      ...
      
      }
      

      is the scope of administerableConferences being prompted to SESSION because the class is scoped SESSION?

      As you can seen from this clip of debug.seam it iis in the SESSION context:

      - Session Context
      activeConferences
      adminConf
      administerableConferences
      conferenceManager
      javax.faces.request.charset
      org.jboss.seam.core.conversationEntries
      org.jboss.seam.international.localeSelector
      org.jboss.seam.security.identity
      org.jboss.seam.web.session
      person
      waitc.u
      + - Application Context


      I am using Seam 2.0.0 by the way.

      Thanks for any and all responses.

      Earnie!