java/nekurak.net-ejb/src/conf/Uzivatel.hbm.xml
author František Kučera <franta-hg@frantovo.cz>
Tue May 25 13:54:21 2010 +0200 (2010-05-25)
changeset 123 9135d52e8b0a
child 145 0efefbf5f8b6
permissions -rw-r--r--
Test hashovací funkce + test češtiny v identifikátorech
Java Language Specification – 3.8 Identifiers:
http://java.sun.com/docs/books/jls/third_edition/html/lexical.html#40625
     1 <?xml version="1.0"?>
     2 <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
     3 "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
     4 <hibernate-mapping>
     5     <class name="cz.frantovo.nekurak.dto.Uzivatel" table="uzivatel">
     6 	<id name="id" column="id" type="integer">
     7 	    <generator class="sequence">
     8 		<param name="sequence">uzivatel_seq</param>
     9 	    </generator>
    10 	</id>
    11 	<property name="prezdivka" column="prezdivka" unique="true"/>
    12 	<property name="heslo" column="heslo"/>
    13 	<property name="jmeno" column="jmeno"/>
    14 	<property name="prijmeni" column="prijmeni"/>
    15 	<property name="email" column="email"/>
    16 	<property name="datum" column="datum"/>
    17     </class>
    18 </hibernate-mapping>