java/nekurak.net-lib/src/cz/frantovo/nekurak/ejb/ClanekRemote.java
author František Kučera <franta-hg@frantovo.cz>
Tue Mar 23 00:50:39 2010 +0100 (2010-03-23)
changeset 75 18ed62105526
child 94 ac4a5fc868eb
permissions -rw-r--r--
REST: přidán nový webový modul.
     1 package cz.frantovo.nekurak.ejb;
     2 
     3 import cz.frantovo.nekurak.dto.Clanek;
     4 import java.util.Collection;
     5 import javax.ejb.Remote;
     6 
     7 /**
     8  *
     9  * @author fiki
    10  */
    11 @Remote
    12 public interface ClanekRemote {
    13 
    14     public Clanek getClanek(int id);
    15 
    16     public void zalozClanek(Clanek clanek);
    17 
    18     public void upravClanek(Clanek clanek);
    19 
    20     public Collection<Clanek> getClanky();
    21 }