2020-01-09 10:44:32 +01:00
|
|
|
/* Copyright (C) 2017-2020 Carsten Pfeiffer
|
2018-06-25 18:35:46 +02:00
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Gadgetbridge 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2017-10-19 21:52:38 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
|
|
|
|
2020-08-08 16:22:55 +02:00
|
|
|
import org.json.JSONObject;
|
|
|
|
|
2017-10-19 21:52:38 +02:00
|
|
|
import java.io.Serializable;
|
|
|
|
import java.util.Date;
|
|
|
|
|
2020-08-20 09:03:26 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.devices.huami.HuamiActivitySummaryParser;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.entities.BaseActivitySummary;
|
|
|
|
|
2017-10-19 21:52:38 +02:00
|
|
|
/**
|
|
|
|
* Summarized information about a temporal activity.
|
|
|
|
*
|
|
|
|
* // TODO: split into separate entities?
|
|
|
|
*/
|
|
|
|
public interface ActivitySummary extends Serializable {
|
2020-08-14 22:48:03 +02:00
|
|
|
Long getId();
|
2017-10-19 21:52:38 +02:00
|
|
|
String getName();
|
|
|
|
Date getStartTime();
|
|
|
|
Date getEndTime();
|
|
|
|
|
|
|
|
int getActivityKind();
|
|
|
|
String getGpxTrack();
|
|
|
|
|
|
|
|
long getDeviceId();
|
|
|
|
|
|
|
|
long getUserId();
|
2020-08-08 16:22:55 +02:00
|
|
|
String getSummaryData();
|
2017-10-19 21:52:38 +02:00
|
|
|
// long getSteps();
|
|
|
|
// float getDistanceMeters();
|
|
|
|
// float getAscentMeters();
|
|
|
|
// float getDescentMeters();
|
|
|
|
// float getMinAltitude();
|
|
|
|
// float getMaxAltitude();
|
|
|
|
// float getCalories();
|
|
|
|
//
|
|
|
|
// float getMaxSpeed();
|
|
|
|
// float getMinSpeed();
|
|
|
|
// float getAverageSpeed();
|
|
|
|
}
|