java/nekurak.net-lib/src/cz/frantovo/nekurak/ejb/UzivatelRemote.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 52 4c0408690ebf
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.PozadavekNaRegistraciUzivatele;
     4 import cz.frantovo.nekurak.vyjimky.NekurakVyjimka;
     5 import javax.ejb.Remote;
     6 
     7 /**
     8  *
     9  * @author fiki
    10  */
    11 @Remote
    12 public interface UzivatelRemote {
    13 
    14     /** Registrace nového uživatele */
    15     public void registrujUzivatele(PozadavekNaRegistraciUzivatele p) throws NekurakVyjimka;
    16 }