1 Reply Latest reply on Apr 5, 2008 8:58 PM by dipas

    WebRemote and extended Interfaces in SFSB

    dipas

      Class org.jboss.seam.remoting.InterfaceGenerator does not scan for WebRemote.class-Annotation in extended Business-Interfaces.  


      The use case is the following


      Base-Interface:


      public interface Form {
          Boolean getFormModified();
          @WebRemote
          void setFormModified(Boolean isFormModified);
      
          ... more general methods ...
      }
      



      Business-Interface:


      @Local
      public interface SysUserAdmin extends Form {
      
          ... all my individual methods ...
      }
      



      Session-Bean:


      @Stateful
      @Name("sysUserAdmin")
      @Scope(ScopeType.CONVERSATION)
      public class SysUserAdminAction extends FormAction implements SysUserAdmin, Serializable {
         ...
      }
      



      Is it possible to add this behavior to InterfaceGenerator?


      Thank you very much