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:
Maria Odea B. Ching 2008-11-14 06:57:59 +00:00
parent 4e6e67b4d6
commit 975b679abf
2 changed files with 6 additions and 4 deletions

View File

@ -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">

View File

@ -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();