<?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 - Actor
   - $Id: Actor.hbm.xml,v 1.2 2015/04/01 02:46:58 dick Exp $
   -
   - BuckoVidLib - The BuckoSoft Video Library
   - Copyright(c) 2014 - Dick Balaska
   -
   - $Log: Actor.hbm.xml,v $
   - Revision 1.2  2015/04/01 02:46:58  dick
   - Update dtd and table names are plural.
   -
   - Revision 1.1  2014/10/31 06:56:43  dick
   - Hibernate Actor mapping.
   -
   -->

<hibernate-mapping>
	<class name="com.buckosoft.BuckoVidLib.domain.Actor" table="actors">
		<id name="id" column = "id">
			<generator class="native"/>
		</id>
	 	<property name="name" />
		<property name="plexId" />
		<property name="thumb" />
	</class>
</hibernate-mapping>
