author | František Kučera <franta-hg@frantovo.cz> |
Sat Jun 19 11:19:27 2010 +0200 (2010-06-19) | |
changeset 142 | 44ef544460ca |
parent 94 | ac4a5fc868eb |
child 145 | 0efefbf5f8b6 |
permissions | -rw-r--r-- |
1 package cz.frantovo.nekurak.ejb;
3 import cz.frantovo.nekurak.dto.Clanek;
4 import java.util.Collection;
5 import javax.ejb.Remote;
7 /**
8 *
9 * @author fiki
10 */
11 @Remote
12 public interface ClanekRemote {
14 public Clanek getClanek(int id);
16 public int zalozClanek(Clanek clanek);
18 public void upravClanek(Clanek clanek);
20 public Collection<Clanek> getClanky();
22 public void smazClanek(Clanek clanek);
23 }