java/HibernateDemo1/HibernateDemo1-ejb/src/java/cz/frantovo/hibernateDemo1/CilDAOBean.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 14 Mar 2009 22:14:59 +0100
changeset 1 55b52df32ec2
parent 0 16a1fc2116d6
child 2 715acc59d67d
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.Stateless;
     6 
     7 /**
     8  *
     9  * @author fiki
    10  */
    11 @Stateless
    12 public class CilDAOBean implements CilDAORemote {
    13 
    14     public Collection<Cil> getCile() {
    15         throw new UnsupportedOperationException("Not supported yet.");
    16     }
    17     
    18  
    19 }