Package org.apache.maven.archiva.proxy

Examples of org.apache.maven.archiva.proxy.ProxiedArtifact


    private void fetchContentFromProxies( DavServerRequest request )
        throws ServletException, ResourceDoesNotExistException
    {
        try
        {
            ProxiedArtifact proxied = proxyRequestHandler.get( request.getLogicalResource(), this.proxiedRepositories, this.managedRepository,
                                     this.wagonProxy );
            request.getRequest().setPathInfo( proxied.getPath() );
        }
        catch ( ProxyException e )
        {
            throw new ServletException( "Unable to fetch resource.", e );
        }
View Full Code Here

TOP

Related Classes of org.apache.maven.archiva.proxy.ProxiedArtifact

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.