mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
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
54 lines
1.8 KiB
XML
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> |