Forgot to post my interface...

import java.io.Serializable;
import java.util.Collection;
import javax.ejb.Remote;

@Remote
public interface AppRolesRemote extends Serializable {    

        public Collection  getAppRoles();
        public void addAppRole (String rolename, String roledesc);
        public void deleteAppRole(String RoleId); 
        public void updateAppRole(String RoleId, String rolename, String 
roledesc);
        public UserRoleBean getAppRole(String RoleId);

}

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884100#3884100

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884100


-------------------------------------------------------
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to