01: /*
02: * Created on 09.10.2004
03: *
04: * To change the template for this generated file go to
05: * Window - Preferences - Java - Code Generation - Code and Comments
06: */
07: package de.schlund.pfixcore.example.webservices.chat;
08:
09: /**
10: * @author ml
11: *
12: * To change the template for this generated type comment go to
13: * Window - Preferences - Java - Code Generation - Code and Comments
14: */
15: public interface Chat {
16:
17: public void login(String nickName) throws Exception;
18:
19: public void logout() throws Exception;
20:
21: public void sendMessage(String txt, String[] recipients)
22: throws Exception;
23:
24: public Message[] getMessages();
25:
26: public Message[] getLastMessages();
27:
28: public String[] getNickNames();
29:
30: }
|