1 package org.apache.maven.repository.manager.web.action;
4 * Copyright 2005-2006 The Apache Software Foundation.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
19 import com.opensymphony.xwork.ActionSupport;
20 import org.apache.maven.repository.proxy.ProxyException;
21 import org.apache.maven.repository.proxy.ProxyManager;
22 import org.apache.maven.wagon.ResourceDoesNotExistException;
25 import java.io.FileInputStream;
26 import java.io.FileNotFoundException;
27 import java.io.InputStream;
30 * Proxy functionality.
32 * @plexus.component role="com.opensymphony.xwork.Action" role-hint="proxyAction"
34 public class ProxyAction
40 private ProxyManager proxyManager;
44 private String filename;
46 private String contentType;
48 private static final String NOT_FOUND = "notFound";
50 private InputStream artifactStream;
52 public String execute()
57 File file = proxyManager.get( path );
59 artifactStream = new FileInputStream( file );
61 // TODO: could be better
62 contentType = "application/octet-stream";
64 filename = file.getName();
66 catch ( ResourceDoesNotExistException e )
71 catch ( FileNotFoundException e )
80 public String getPath()
85 public void setPath( String path )
90 public String getFilename()
95 public String getContentType()
100 public InputStream getArtifactStream()
102 return artifactStream;