Merged V3.2 to HEAD

16075: Prevent infinite loop when external authentication subsystem not enabled

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16077 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Dave Ward
2009-09-03 17:35:49 +00:00
parent 14acc8e429
commit 1015fbcb58
2 changed files with 2 additions and 2 deletions

View File

@@ -170,7 +170,7 @@
<property name="transactionService" ref="TransactionService" /> <property name="transactionService" ref="TransactionService" />
</bean> </bean>
<bean id="remoteUserMapper" class="org.alfresco.repo.management.subsystems.ChainingSubsystemProxyFactory"> <bean id="RemoteUserMapper" class="org.alfresco.repo.management.subsystems.ChainingSubsystemProxyFactory">
<property name="applicationContextManager"> <property name="applicationContextManager">
<ref bean="Authentication" /> <ref bean="Authentication" />
</property> </property>

View File

@@ -85,7 +85,7 @@ public final class AuthenticationHelper
/** public service bean IDs **/ /** public service bean IDs **/
private static final String AUTHENTICATION_SERVICE = "AuthenticationService"; private static final String AUTHENTICATION_SERVICE = "AuthenticationService";
private static final String AUTHENTICATION_COMPONENT = "AuthenticationComponent"; private static final String AUTHENTICATION_COMPONENT = "AuthenticationComponent";
private static final String REMOTE_USER_MAPPER = "remoteUserMapper"; private static final String REMOTE_USER_MAPPER = "RemoteUserMapper";
private static final String UNPROTECTED_AUTH_SERVICE = "authenticationService"; private static final String UNPROTECTED_AUTH_SERVICE = "authenticationService";
private static final String PERSON_SERVICE = "personService"; private static final String PERSON_SERVICE = "personService";