1 Reply Latest reply on Mar 7, 2009 5:53 AM by gonorrhea

    Seam JavaBean component and java.io.Serializable

    gonorrhea

      Let's say you have the following:


      @Name("testTopAlignBean")
      @Scope(ScopeType.CONVERSATION)
      public class TestTopAlignBean implements Serializable {
      ...
      }
      



      Now let's say you change it to this:


      @Name("testTopAlignBean")
      @Scope(ScopeType.CONVERSATION)
      public class TestTopAlignBean {
      ...
      }



      What is the affect of not implementing java.io.Serializable?  With that JavaBean and its properties not be able to become a managed part of the HttpSession?  Can you still use this components as a backing bean for a conversation?