java/HibernateDemo1/HibernateDemo1-lib/src/cz/frantovo/hibernateDemo1/CilDAORemote.java
changeset 1 55b52df32ec2
parent 0 16a1fc2116d6
     1.1 --- a/java/HibernateDemo1/HibernateDemo1-lib/src/cz/frantovo/hibernateDemo1/CilDAORemote.java	Sat Mar 14 21:58:41 2009 +0100
     1.2 +++ b/java/HibernateDemo1/HibernateDemo1-lib/src/cz/frantovo/hibernateDemo1/CilDAORemote.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.Remote;
    1.14  
    1.15  /**
    1.16 @@ -13,5 +10,6 @@
    1.17   */
    1.18  @Remote
    1.19  public interface CilDAORemote {
    1.20 -    
    1.21 +
    1.22 +    public Collection<Cil> getCile();
    1.23  }