1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/java/nekurak.net-lib/src/cz/frantovo/nekurak/ejb/PodnikHibernateDAORemote.java Thu Feb 11 10:06:39 2010 +0100
1.3 @@ -0,0 +1,16 @@
1.4 +package cz.frantovo.nekurak.ejb;
1.5 +
1.6 +import cz.frantovo.nekurak.dto.Podnik;
1.7 +import java.util.Collection;
1.8 +import javax.ejb.Remote;
1.9 +
1.10 +/**
1.11 + *
1.12 + * @author fiki
1.13 + */
1.14 +@Remote
1.15 +public interface PodnikHibernateDAORemote {
1.16 +
1.17 + public Collection<Podnik> getPodniky();
1.18 +
1.19 +}