Back to project page kickflip-android-sdk.
The source code is released under:
Apache License
If you think the Android project kickflip-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.kickflip.sdk.event; //from w w w.ja va 2 s . com import java.io.File; /** * Created by David Brodsky on 5/12/14. */ public class S3FailedUploadEvent extends BroadcastEvent implements UploadEvent { private static final String TAG = "S3FailedUploadEvent"; private File mFile; public File getFile() { return mFile; } @Override public String getDestinationUrl() { return ""; } @Override public int getUploadByteRate() { return 0; } public S3FailedUploadEvent(File file) { mFile = file; } public String toString() { return "Failed upload of " + mFile.getName(); } }