繁体   English   中英

Oracle UCM-内容过期后UCM会做什么?

[英]Oracle UCM - What will UCM do when content expired?

是否有任何服务或作业计划每分钟调用一次以执行过期的内容? 我想覆盖该服务。

任何答案将不胜感激。 谢谢

我猜您会以某种方式防止某些内容项过期。 有一项服务EXPIRE_UNEXPIRE_DOC_BY_NAME,用于使内容过期(和取消过期)(我不确定是否始终使用此服务):

This service is used to expire or unexpire documents in the Content Server.
@param dDocName The document to expire or unexpire.
@param action Should be set to 'expire' or 'unexpire'.

您可以加入上述服务并覆盖其功能。

以下服务列出了过期和过期的项目。 GET_EXPIRED

The optional isExpiredQuery parameter, when set to true, causes the service to list only items that have already expired.

Without this parameter, the list also contains items that are scheduled to expire within the range of dates specified by endDate and startDate. This may include items that have already expired if the start date is earlier than the current system time.

还有一个ScheduledEvent EnableExpirationNotifier ,它将发送一封电子邮件,列出即将到期的内容项。 您可以加入该事件并对返回的项目进行处理。

谢谢回答我的问题。 我以为EXPIRE_UNEXPIRE_DOC_BY_NAME是唯一可以使内容过期的服务。 但是,只有在我们单击按钮以强制使内容过期时才触发此服务。 我终于有了自己的问题。 有一个工作计划,它每分钟调用一次,也用javaMethod使内容过期。 该服务是ziprenditionmanagement_service.htm中的PROCESS_STATIC_RENDITION_JOBS。 请注意,我们只能直接编辑此服务,而不能覆盖此组件外部的服务。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM