source: ether_statistics/persistence/implementation/com/ether/dao/simulation/Dimension.hbm.xml @ 569

Last change on this file since 569 was 569, checked in by vmipsl, 12 years ago

Nouveau projet

File size: 837 bytes
Line 
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
5<hibernate-mapping>
6    <class name="com.ether.simulation.Dimension" table="simulation_dimension" schema="public">
7        <id name="id">
8            <column name="id"/>
9
10            <generator class="sequence">
11                <param name="sequence">s_dimension</param>
12            </generator>
13        </id>
14
15        <property name="name">
16            <column name="name" not-null="true"/>
17        </property>
18
19        <property name="length">
20            <column name="length" not-null="true"/>
21        </property>
22
23        <property name="unlimited" type="boolean">
24            <column name="isunlimited"/>
25        </property>
26    </class>
27</hibernate-mapping>
Note: See TracBrowser for help on using the repository browser.