Files
alfresco-community-repo/config/alfresco/ibatis/org.hibernate.dialect.PostgreSQLDialect/content-insert-SqlMap.xml
Mark Rogers afe200fbd5 Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)
84811: Merged PLATFORM1 (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud)
      82464: ACE-1246 "Allow the customer to change the document encryption key"
      Encrypting content store


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@85170 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2014-09-20 08:36:54 +00:00

54 lines
1.8 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="alfresco.content.insert">
<insert id="insert_Mimetype" parameterType="Mimetype" >
<selectKey resultType="long" keyProperty="id" order="BEFORE" >
select nextVal('alf_mimetype_seq')
</selectKey>
<include refid="alfresco.content.insert_Mimetype_Sequence"/>
</insert>
<insert id="insert_Encoding" parameterType="Encoding" >
<selectKey resultType="long" keyProperty="id" order="BEFORE" >
select nextVal('alf_encoding_seq')
</selectKey>
<include refid="alfresco.content.insert_Encoding_Sequence"/>
</insert>
<insert id="insert_ContentUrl" parameterType="ContentUrl" >
<selectKey resultType="long" keyProperty="id" order="BEFORE" >
select nextVal('alf_content_url_seq')
</selectKey>
<include refid="alfresco.content.insert_ContentUrl_Sequence"/>
</insert>
<insert id="insert_ContentData" parameterType="ContentData" >
<selectKey resultType="long" keyProperty="id" order="BEFORE" >
select nextVal('alf_content_data_seq')
</selectKey>
<include refid="alfresco.content.insert_ContentData_Sequence"/>
</insert>
<insert id="insert_KeyData" parameterType="ContentUrlKey">
<selectKey resultType="long" keyProperty="id" order="BEFORE" >
select nextVal('alf_content_url_enc_seq')
</selectKey>
<include refid="alfresco.content.insert_KeyData_Sequence"/>
</insert>
</mapper>