blob: ee188c4ee72691853f820cb19688c1104df8026d [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="org.jsecurity.samples.sprhib.party.Person" table="people">
<cache usage="read-write"/>
<id name="id" column="person_id">
<generator class="native"/>
</id>
<version name="entityVersion" column="entity_version" unsaved-value="negative"/>
<property name="gender" length="1">
<column name="gender" sql-type="char" length="1"/>
<type name="org.jsecurity.samples.sprhib.eis.hibernate.GenericEnumUserType">
<param name="enumClass">org.jsecurity.samples.sprhib.party.Gender</param>
<param name="identifierMethod">toInitial</param>
<param name="valueOfMethod">fromInitial</param>
</type>
</property>
<property name="nameSalutation" column="name_salutation"/>
<property name="givenName" column="given_name" not-null="true"/>
<property name="middleNames" column="middle_names"/>
<property name="surname" not-null="true"/>
<property name="nameSuffix" column="name_suffix"/>
<property name="dateOfBirth" column="date_of_birth"/>
<property name="title"/>
</class>
</hibernate-mapping>