View Javadoc

1   /*$Id: FtpProtocol.java,v 1.1 2004/07/26 12:07:38 nw Exp $
2    * Created on 16-Jun-2004
3    *
4    * Copyright (C) AstroGrid. All rights reserved.
5    *
6    * This software is published under the terms of the AstroGrid 
7    * Software License version 1.2, a copy of which has been included 
8    * with this distribution in the LICENSE.txt file.  
9    *
10  **/
11  package org.astrogrid.applications.parameter.protocol;
12  
13  
14  /*** Protocol Implementation for ftp:/
15   * @todo replace with more robust implementation based on commons FtpClient.
16   * @author Noel Winstanley nw@jb.man.ac.uk 16-Jun-2004
17   *
18   */
19  public class FtpProtocol extends HttpProtocol{
20  
21      /***
22       * @see org.astrogrid.applications.parameter.protocol.Protocol#getProtocolName()
23       */
24      public String getProtocolName() {
25          return "ftp";
26      }
27  
28    
29      /***
30       * @see org.astrogrid.component.descriptor.ComponentDescriptor#getName()
31       */
32      public String getName() {
33       return "FtpProtocol";
34      }
35  
36      /***
37       * @see org.astrogrid.component.descriptor.ComponentDescriptor#getDescription()
38       */
39      public String getDescription() {   
40          return "Protocol adapter for ftp:/ protocol";
41      }
42  
43  }
44  
45  
46  /* 
47  $Log: FtpProtocol.java,v $
48  Revision 1.1  2004/07/26 12:07:38  nw
49  renamed indirect package to protocol,
50  renamed classes and methods within protocol package
51  javadocs
52  
53  Revision 1.2  2004/07/01 11:16:22  nw
54  merged in branch
55  nww-itn06-componentization
56  
57  Revision 1.1.2.2  2004/07/01 01:42:46  nw
58  final version, before merge
59  
60  Revision 1.1.2.1  2004/06/17 09:21:23  nw
61  finished all major functionality additions to core
62   
63  */