SyncDevice.java 786 B

1234567891011121314151617181920212223242526272829303132
  1. package de.tudarmstadt.informatik.hostage.logging;
  2. /**
  3. * Created by Julien on 04.12.2014.
  4. */
  5. public class SyncDevice {
  6. private long highest_attack_id;
  7. private String deviceID;
  8. private long last_sync_timestamp;
  9. public long getHighest_attack_id(){return this.highest_attack_id;}
  10. public void setHighest_attack_id(long i){this.highest_attack_id = i;}
  11. /**
  12. * @return the deviceID
  13. */
  14. public String getDeviceID() {
  15. return deviceID;
  16. }
  17. /**
  18. * @param deviceID the deviceID to set
  19. */
  20. public void setDeviceID(String deviceID) {
  21. this.deviceID = deviceID;
  22. }
  23. public void setLast_sync_timestamp(long t){this.last_sync_timestamp = t;}
  24. public long getLast_sync_timestamp(){return this.last_sync_timestamp;}
  25. }