forked from hmkcode/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapping.xml
More file actions
19 lines (19 loc) · 784 Bytes
/
mapping.xml
File metadata and controls
19 lines (19 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0"?><!DOCTYPE mapping PUBLIC "-//EXOLAB/Castor Mapping DTD Version 1.0//EN"
"http://castor.org/mapping.dtd">
<mapping>
<class name="com.hmkcode.vo.Article">
<map-to xml="article" />
<field name="title" type="string">
<bind-xml name="title" node="attribute"/>
</field>
<field name="url" type="string">
<bind-xml name="url" node="element"/>
</field>
<field name="categories" type="string" collection="arraylist">
<bind-xml name="category" />
</field>
<field name="tags" type="string" collection="arraylist">
<bind-xml name="tag" />
</field>
</class>
</mapping>