java/HibernateDemo1/HibernateDemo1-ejb/src/java/cz/frantovo/hibernateDemo1/CilDAOBean.java
author František Kučera <franta-hg@frantovo.cz>
Sat Mar 14 21:58:41 2009 +0100 (2009-03-14)
changeset 0 16a1fc2116d6
child 1 55b52df32ec2
permissions -rw-r--r--
Založení projektů (ejb, lib, web)
     1 /*
     2  * To change this template, choose Tools | Templates
     3  * and open the template in the editor.
     4  */
     5 
     6 package cz.frantovo.hibernateDemo1;
     7 
     8 import javax.ejb.Stateless;
     9 
    10 /**
    11  *
    12  * @author fiki
    13  */
    14 @Stateless
    15 public class CilDAOBean implements CilDAORemote {
    16     
    17     // Add business logic below. (Right-click in editor and choose
    18     // "Insert Code > Add Business Method" or "Web Service > Add Operation")
    19  
    20 }