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

88 lines
2.5 KiB
Java
Raw Normal View History

2022-07-22 06:05:37 +00:00
package eu.faircode.email;
/*
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-07-22 06:05:37 +00:00
*/
import android.content.Context;
2022-07-23 07:27:04 +00:00
import android.os.Bundle;
2022-07-26 06:05:00 +00:00
import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.NonNull;
2022-07-22 06:05:37 +00:00
2022-07-23 07:27:04 +00:00
import java.io.File;
2022-07-22 06:05:37 +00:00
2022-07-23 07:27:04 +00:00
public class VirusTotal {
2022-07-22 06:05:37 +00:00
static final String URI_PRIVACY = "";
2022-07-24 19:17:10 +00:00
static String getUrl(File file) {
2022-12-30 11:38:31 +00:00
throw new IllegalArgumentException("VirusTotal");
2022-07-24 19:17:10 +00:00
}
2022-07-24 17:25:49 +00:00
static Bundle lookup(Context context, File file, String apiKey) {
2022-12-30 11:38:31 +00:00
throw new IllegalArgumentException("VirusTotal");
2022-07-24 17:25:49 +00:00
}
2022-07-29 09:20:16 +00:00
static String upload(Context context, File file, String apiKey) {
2022-12-30 11:38:31 +00:00
throw new IllegalArgumentException("VirusTotal");
2022-07-22 06:05:37 +00:00
}
2022-07-26 06:05:00 +00:00
2022-07-29 09:20:16 +00:00
static void waitForAnalysis(Context context, String id, String apiKey) {
2022-12-30 11:38:31 +00:00
throw new IllegalArgumentException("VirusTotal");
2022-07-29 09:20:16 +00:00
}
2022-07-26 06:05:00 +00:00
public static class ScanResult implements Parcelable {
public String name;
public String category;
ScanResult(String name, String category) {
this.name = name;
this.category = category;
}
protected ScanResult(Parcel in) {
name = in.readString();
category = in.readString();
}
@Override
public void writeToParcel(@NonNull Parcel parcel, int i) {
parcel.writeString(name);
parcel.writeString(category);
}
@Override
public int describeContents() {
return 0;
}
public static final Creator<ScanResult> CREATOR = new Creator<ScanResult>() {
@Override
public ScanResult createFromParcel(Parcel in) {
return new ScanResult(in);
}
@Override
public ScanResult[] newArray(int size) {
return new ScanResult[size];
}
};
}
2022-07-22 06:05:37 +00:00
}