java/HibernateDemo1/HibernateDemo1-lib/src/cz/frantovo/hibernateDemo1/CilDAORemote.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 14 Mar 2009 22:14:59 +0100
changeset 1 55b52df32ec2
parent 0 16a1fc2116d6
permissions -rw-r--r--
JPA: persistence.xml a první mapování
     1 package cz.frantovo.hibernateDemo1;
     2 
     3 import cz.frantovo.hibernateDemo1.dto.Cil;
     4 import java.util.Collection;
     5 import javax.ejb.Remote;
     6 
     7 /**
     8  *
     9  * @author fiki
    10  */
    11 @Remote
    12 public interface CilDAORemote {
    13 
    14     public Collection<Cil> getCile();
    15 }