| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
<!DOCTYPE hibernate-mapping PUBLIC |
|---|
| 3 |
"-//Hibernate/Hibernate Mapping DTD//EN" |
|---|
| 4 |
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> |
|---|
| 5 |
|
|---|
| 6 |
<!-- =================================================================== |
|---|
| 7 |
Attendees |
|---|
| 8 |
=================================================================== --> |
|---|
| 9 |
|
|---|
| 10 |
<hibernate-mapping> |
|---|
| 11 |
<class name="org.bedework.calfacade.BwAttendee" |
|---|
| 12 |
table="bw_attendees"> |
|---|
| 13 |
<id name="id" type="integer" column="attendeeid" unsaved-value="-1"> |
|---|
| 14 |
<generator class="native"/> |
|---|
| 15 |
</id> |
|---|
| 16 |
|
|---|
| 17 |
<property name="cn" type="string" length="2000" /> |
|---|
| 18 |
<property name="cuType" column="cutype" type="string" length="2000"/> |
|---|
| 19 |
<property name="delegatedFrom" column="delegated_from" type="string" |
|---|
| 20 |
length="2000"/> |
|---|
| 21 |
<property name="delegatedTo" column="delegated_to" type="string" |
|---|
| 22 |
length="2000"/> |
|---|
| 23 |
<property name="dir" type="string" length="2000"/> |
|---|
| 24 |
<property name="language" column="lang" type="string" length="100"/> |
|---|
| 25 |
<property name="member" type="string" length="2000"/> |
|---|
| 26 |
<property name="rsvp" type="true_false"/> |
|---|
| 27 |
<property name="role" type="string" length="200"/> |
|---|
| 28 |
<property name="partstat" type="string" length="100"/> |
|---|
| 29 |
<property name="sentBy" column="sent_by" type="string" length="2000"/> |
|---|
| 30 |
<property name="attendeeUri" column="attendee_uri" type="string" |
|---|
| 31 |
length="2000"/> |
|---|
| 32 |
|
|---|
| 33 |
<property name="sequence" column="rfcsequence" type="integer" /> |
|---|
| 34 |
|
|---|
| 35 |
<property name="scheduleAgent" column="bw_sched_agent" type="integer" /> |
|---|
| 36 |
<property name="scheduleStatus" column="bw_sched_status" type="string" |
|---|
| 37 |
length="100"/> |
|---|
| 38 |
|
|---|
| 39 |
<property name="dtstamp" column="dtstamp" type="string" length="16" /> |
|---|
| 40 |
</class> |
|---|
| 41 |
</hibernate-mapping> |
|---|
| 42 |
|
|---|