View Javadoc

1   /**
2    * 
3    */
4   package com.btmatthews.maven.wagon.sourceforge;
5   
6   import java.io.File;
7   
8   import org.apache.maven.wagon.AbstractWagon;
9   import org.apache.maven.wagon.ConnectionException;
10  import org.apache.maven.wagon.ResourceDoesNotExistException;
11  import org.apache.maven.wagon.TransferFailedException;
12  import org.apache.maven.wagon.authentication.AuthenticationException;
13  import org.apache.maven.wagon.authorization.AuthorizationException;
14  
15  /**
16   * @author <a href="mailto:brian@btmatthews.com">Brian Matthews</a>
17   * @version 1.0
18   */
19  public final class WagonSourceForge
20      extends AbstractWagon
21  {
22  
23      @Override
24      protected void closeConnection()
25          throws ConnectionException
26      {
27          // TODO Auto-generated method stub
28  
29      }
30  
31      @Override
32      protected void openConnectionInternal()
33          throws ConnectionException, AuthenticationException
34      {
35          // TODO Auto-generated method stub
36  
37      }
38  
39      @Override
40      public void get(final String resourceName, final File destination)
41          throws TransferFailedException, ResourceDoesNotExistException,
42          AuthorizationException
43      {
44          // TODO Auto-generated method stub
45  
46      }
47  
48      @Override
49      public boolean getIfNewer(final String resourceName,
50          final File destination, final long timestamp)
51          throws TransferFailedException, ResourceDoesNotExistException,
52          AuthorizationException
53      {
54          // TODO Auto-generated method stub
55          return false;
56      }
57  
58      @Override
59      public void put(final File source, final String destination)
60          throws TransferFailedException, ResourceDoesNotExistException,
61          AuthorizationException
62      {
63          // TODO Auto-generated method stub
64      }
65  }