blob: f0029f9cc1015c612760223ec7de722124a69bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package cgeo.geocaching.connector;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.TrackableLog;
import cgeo.geocaching.enumerations.LogType;
import android.net.Uri;
import java.util.Calendar;
import java.util.List;
public interface ILoggingManager {
LogResult postLog(Geocache cache,
LogType logType,
Calendar date,
String log,
List<TrackableLog> trackableLogs);
ImageResult postLogImage(String logId,
String imageCaption,
String imageDescription,
Uri imageUri);
public boolean hasLoaderError();
public List<TrackableLog> getTrackables();
public List<LogType> getPossibleLogTypes();
public void init();
}
|