java/nekurak.net-ejb/src/conf/Fotka.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
parent 67 fa7e30dee3b3
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
franta-hg@67
     1
<?xml version="1.0"?>
franta-hg@67
     2
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
franta-hg@67
     3
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
franta-hg@67
     4
<hibernate-mapping>
franta-hg@67
     5
    <class name="cz.frantovo.nekurak.dto.Fotka" table="fotka">
franta-hg@67
     6
	<id name="id" column="id" type="integer">
franta-hg@67
     7
	    <generator class="sequence">
franta-hg@67
     8
		<param name="sequence">fotka_seq</param>
franta-hg@67
     9
	    </generator>
franta-hg@67
    10
	</id>
franta-hg@67
    11
	<property name="popis" column="popis"/>
franta-hg@72
    12
	<property name="poradi" column="poradi"/>
franta-hg@67
    13
    </class>
franta-hg@67
    14
</hibernate-mapping>