How's this work?
@Local
| public interface ServiceI {
|
| }
|
| @Remote
| public interface ServiceManagementI {
|
| public void start();
|
| public void stop() throws Exception;
|
| }
|
| @Stateless
| public class Service implements ServiceManagementI, ServiceI {
|
| public void start() {
| System.out.println("I am here!");
| }
|
| public void stop() throws Exception {
| System.out.println("Something...");
| }
|
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3984599#3984599
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3984599
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user