Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/protocol/GBDeviceCommandAppManagementResult.java

25 lines
556 B
Java
Raw Normal View History

2015-03-26 18:11:47 +01:00
package nodomain.freeyourgadget.gadgetbridge.protocol;
public class GBDeviceCommandAppManagementResult extends GBDeviceCommand {
public Result result = Result.UNKNOWN;
public CommandType type = CommandType.UNKNOWN;
public int token = -1;
2015-03-26 18:11:47 +01:00
public GBDeviceCommandAppManagementResult() {
commandClass = CommandClass.APP_MANAGEMENT_RES;
}
public enum CommandType {
UNKNOWN,
INSTALL,
2015-03-26 18:11:47 +01:00
DELETE,
}
public enum Result {
UNKNOWN,
SUCCESS,
ACKNOLEDGE,
2015-03-26 18:11:47 +01:00
FAILURE,
}
}