mirror of https://github.com/apache/archiva.git
o updated applicationContext
o removed sys out git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@713939 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4e6e67b4d6
commit
975b679abf
|
@ -63,8 +63,12 @@
|
|||
</bean>
|
||||
|
||||
<bean name="xmlrpcServicesList" lazy-init="true" scope="singleton" class="java.util.ArrayList">
|
||||
<constructor-arg ref="administrationService"/>
|
||||
<!-- <constructor-arg ref="searchService"/> -->
|
||||
<constructor-arg>
|
||||
<list>
|
||||
<ref bean="administrationService"/>
|
||||
<ref bean="searchService"/>
|
||||
</list>
|
||||
</constructor-arg>
|
||||
</bean>
|
||||
|
||||
<bean name="xmlRpcAuthenticator" class="org.apache.archiva.web.xmlrpc.security.XmlRpcAuthenticator">
|
||||
|
|
|
@ -62,8 +62,6 @@ public class XmlRpcAuthenticator
|
|||
public boolean isAuthorized( XmlRpcRequest pRequest )
|
||||
throws XmlRpcException
|
||||
{
|
||||
System.out.println( "authenticator is called for request '" + pRequest.getMethodName() + "'" );
|
||||
|
||||
if ( pRequest.getConfig() instanceof XmlRpcHttpRequestConfigImpl )
|
||||
{
|
||||
XmlRpcHttpRequestConfigImpl config = (XmlRpcHttpRequestConfigImpl) pRequest.getConfig();
|
||||
|
|
Loading…
Reference in New Issue