001package Torello.Java.Build;
002
003/**
004 * Under Development.  Will (one day, over the rainbow) utilize the gargantuan Amazon Java AWS SDK
005 * for "Simple Storage Service" (S3), to copy JavaDoc Web-Pages to Cloud Storage Buckets and
006 * directories.
007 * 
008 * <BR /><BR />Right now, I am planning to finish the Java-Doc Upgrader, and therefore, cannot
009 * mess with that at the moment.  AWS Java Packages look like a sick f***** joke to me.  But, S3
010 * is pretty common, I guess - Amazon just doesn't give a $*** about the Java-API, so I am going to
011 * have to pick through that enormous pile of doo-doo to figure out how to use it.
012 */
013public abstract class CloudSyncS3 extends CloudSync 
014{
015    private CloudSyncS3()
016    {
017        // required: boolean,boolean,boolean,boolean,String,String
018        // found:    no arguments
019        // reason: actual and formal argument lists differ in length
020
021        super(false, false, false, false, null, null);
022        throw new Torello.Java.ToDoException();
023    }
024}