View Javadoc

1   /*
2    * $Id: MySpaceUploadTask.java,v 1.2 2004/08/04 12:23:28 pah Exp $
3    * 
4    * Created on 13-Jul-2004 by Paul Harrison (pah@jb.man.ac.uk)
5    *
6    * Copyright 2004 AstroGrid. All rights reserved.
7    *
8    * This software is published under the terms of the AstroGrid 
9    * Software License version 1.2, a copy of which has been included 
10   * with this distribution in the LICENSE.txt file.  
11   *
12   */ 
13  
14  package org.astrogrid.deployment;
15  
16  import org.apache.tools.ant.Task;
17  
18  /***
19   * Ant task to upload a file to myspace. This task uses a myspace delegate to upload to a specific myspace manager.
20   * @author Paul Harrison (pah@jb.man.ac.uk) 13-Jul-2004
21   * @version $Name:  $
22   * @since iteration5
23   */
24  public class MySpaceUploadTask extends Task {
25  
26     private String myspace;
27     private String filename;
28     /***
29      * 
30      */
31     public MySpaceUploadTask() {
32        super();
33        // TODO Auto-generated constructor stub
34     }
35     
36  
37  }