mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
WCM-DEV2 and added back my changes. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@2804 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
15 lines
604 B
XML
15 lines
604 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" >
|
|
<hibernate-mapping package="org.alfresco.repo.avm.hibernate">
|
|
<class table="contents" name="ContentBeanImpl" proxy="ContentBean"
|
|
optimistic-lock="version">
|
|
<cache usage="read-write" />
|
|
<id name="id" column="id" type="long">
|
|
</id>
|
|
<version name="vers" column="vers" type="long"></version>
|
|
<property name="refCount" column="ref_count" type="int"
|
|
not-null="true">
|
|
</property>
|
|
</class>
|
|
</hibernate-mapping>
|