FairEmail/app/src/dummy/java/eu/faircode/email/Send.java

41 lines
1.3 KiB
Java
Raw Normal View History

2022-07-31 12:11:13 +00:00
package eu.faircode.email;
2022-12-30 11:26:14 +00:00
/*
This file is part of FairEmail.
FairEmail is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
FairEmail is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2024-01-01 07:50:49 +00:00
Copyright 2018-2024 by Marcel Bokhorst (M66B)
2022-12-30 11:26:14 +00:00
*/
2022-07-31 13:54:58 +00:00
import androidx.documentfile.provider.DocumentFile;
import java.io.InputStream;
2022-07-31 12:11:13 +00:00
2022-07-31 19:41:40 +00:00
public class Send {
2022-07-31 20:34:02 +00:00
static final int DEFAULT_DLIMIT = 0;
static final int DEFAULT_TLIMIT = 0;
static final String DEFAULT_SERVER = "";
2022-07-31 13:54:58 +00:00
2022-08-01 05:50:42 +00:00
public static String upload(InputStream is, DocumentFile dfile, int dLimit, int timeLimit, String host, IProgress intf) {
2022-12-30 11:38:31 +00:00
throw new IllegalArgumentException("Send");
2022-07-31 12:11:13 +00:00
}
2022-08-01 05:50:42 +00:00
public interface IProgress {
void onProgress(int percentage);
2022-09-30 11:20:19 +00:00
boolean isRunning();
2022-08-01 05:50:42 +00:00
}
2022-07-31 13:54:58 +00:00
}