java/HibernateDemo1/HibernateDemo1-ejb/src/java/cz/frantovo/hibernateDemo1/CilDAOBean.java
changeset 1 55b52df32ec2
parent 0 16a1fc2116d6
child 2 715acc59d67d
     1.1 --- a/java/HibernateDemo1/HibernateDemo1-ejb/src/java/cz/frantovo/hibernateDemo1/CilDAOBean.java	Sat Mar 14 21:58:41 2009 +0100
     1.2 +++ b/java/HibernateDemo1/HibernateDemo1-ejb/src/java/cz/frantovo/hibernateDemo1/CilDAOBean.java	Sat Mar 14 22:14:59 2009 +0100
     1.3 @@ -1,10 +1,7 @@
     1.4 -/*
     1.5 - * To change this template, choose Tools | Templates
     1.6 - * and open the template in the editor.
     1.7 - */
     1.8 -
     1.9  package cz.frantovo.hibernateDemo1;
    1.10  
    1.11 +import cz.frantovo.hibernateDemo1.dto.Cil;
    1.12 +import java.util.Collection;
    1.13  import javax.ejb.Stateless;
    1.14  
    1.15  /**
    1.16 @@ -13,8 +10,10 @@
    1.17   */
    1.18  @Stateless
    1.19  public class CilDAOBean implements CilDAORemote {
    1.20 +
    1.21 +    public Collection<Cil> getCile() {
    1.22 +        throw new UnsupportedOperationException("Not supported yet.");
    1.23 +    }
    1.24      
    1.25 -    // Add business logic below. (Right-click in editor and choose
    1.26 -    // "Insert Code > Add Business Method" or "Web Service > Add Operation")
    1.27   
    1.28  }