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
Added as Feature Request in JIRA
JBSEAM-2852