author | František Kučera <franta-hg@frantovo.cz> |
Wed, 30 Jun 2010 00:26:14 +0200 | |
changeset 149 | 8238cdb4113a |
permissions | -rw-r--r-- |
franta-hg@149 | 1 |
package cz.frantovo.nekurak.ejb; |
franta-hg@149 | 2 |
|
franta-hg@149 | 3 |
import cz.frantovo.nekurak.dto.ZpravaChatu; |
franta-hg@149 | 4 |
import cz.frantovo.nekurak.vyjimky.NekurakVyjimka; |
franta-hg@149 | 5 |
import java.util.Collection; |
franta-hg@149 | 6 |
import javax.ejb.Remote; |
franta-hg@149 | 7 |
|
franta-hg@149 | 8 |
@Remote |
franta-hg@149 | 9 |
public interface ChatRemote { |
franta-hg@149 | 10 |
|
franta-hg@149 | 11 |
void posliZpravu(String mistnost, String prezdivka, String zprava) throws NekurakVyjimka; |
franta-hg@149 | 12 |
|
franta-hg@149 | 13 |
public Collection<ZpravaChatu> getZpravy(String mistnost, int poradoveCislo) throws NekurakVyjimka; |
franta-hg@149 | 14 |
|
franta-hg@149 | 15 |
} |