mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Merge branch 'feature-2.4/RM-3216_RegressionIMAP' into 'release/V2.4'
Feature 2.4/rm 3216 regression imap RM-3274 - Error creating bean with name 'imapServiceBootstrap' I added an invalid authentication util bean reference to the extended IMAP service and the setter was missing. See merge request !117
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<!-- Extend Imap Service -->
|
||||
<bean id="rm.imapService" abstract="true" class="org.alfresco.repo.imap.ExtendedImapServiceImpl">
|
||||
<property name="dictionaryService" ref="DictionaryService"/>
|
||||
<property name="authenticationUtil" ref="AuthenticationUtil"/>
|
||||
<property name="authenticationUtil" ref="rm.authenticationUtil"/>
|
||||
</bean>
|
||||
<bean class="org.alfresco.util.BeanExtender">
|
||||
<property name="beanName" value="imapService" />
|
||||
|
@@ -54,12 +54,19 @@ public class ExtendedImapServiceImpl extends ImapServiceImpl
|
||||
this.dictionaryService = dictionaryService;
|
||||
}
|
||||
|
||||
public void setAuthenticationUtil(AuthenticationUtil authenticationUtil)
|
||||
{
|
||||
this.authenticationUtil = authenticationUtil;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPolicyFilter(BehaviourFilter policyBehaviourFilter)
|
||||
{
|
||||
this.policyBehaviourFilter = policyBehaviourFilter;
|
||||
super.setPolicyFilter(policyBehaviourFilter);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setNodeService(NodeService nodeService)
|
||||
{
|
||||
this.nodeService = nodeService;
|
||||
|
Reference in New Issue
Block a user