java/nekurak.net-lib/src/cz/frantovo/nekurak/ejb/ClanekRemote.java
author František Kučera <franta-hg@frantovo.cz>
Tue May 25 13:54:21 2010 +0200 (2010-05-25)
changeset 123 9135d52e8b0a
parent 94 ac4a5fc868eb
child 145 0efefbf5f8b6
permissions -rw-r--r--
Test hashovací funkce + test češtiny v identifikátorech
Java Language Specification – 3.8 Identifiers:
http://java.sun.com/docs/books/jls/third_edition/html/lexical.html#40625
     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 int zalozClanek(Clanek clanek);
    17 
    18     public void upravClanek(Clanek clanek);
    19 
    20     public Collection<Clanek> getClanky();
    21 
    22     public void smazClanek(Clanek clanek);
    23 }