<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">

<!-- Hibernate mapping file for BuckoVidLib - UserAttribute
   - $Id: UserAttribute.hbm.xml,v 1.1 2015/05/03 17:52:26 dick Exp $
   -
   - BuckoVidLib - The BuckoSoft Video Library
   - Copyright(c) 2015 - Dick Balaska
   -
   - $Log: UserAttribute.hbm.xml,v $
   - Revision 1.1  2015/05/03 17:52:26  dick
   - UserAttributes define user preferences.
   -
   -->

<hibernate-mapping>
	<class name="com.buckosoft.BuckoVidLib.domain.UserAttribute" table="users">
		<composite-id>
			<key-property name="userId" />
			<key-property name="key" column="attkey" />
		</composite-id>
		<property name="value"/>
	</class>
</hibernate-mapping>
