java/nekurak.net-lib/src/cz/frantovo/nekurak/ejb/PodnikHibernateDAORemote.java
author František Kučera <franta-hg@frantovo.cz>
Thu Feb 11 10:06:39 2010 +0100 (2010-02-11)
changeset 28 0f037986bb6b
permissions -rw-r--r--
Hibernate.
     1 package cz.frantovo.nekurak.ejb;
     2 
     3 import cz.frantovo.nekurak.dto.Podnik;
     4 import java.util.Collection;
     5 import javax.ejb.Remote;
     6 
     7 /**
     8  *
     9  * @author fiki
    10  */
    11 @Remote
    12 public interface PodnikHibernateDAORemote {
    13 
    14     public Collection<Podnik> getPodniky();
    15     
    16 }