SyncInfoRecord.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package de.tudarmstadt.informatik.hostage.logging;
  2. import java.io.Serializable;
  3. public class SyncInfoRecord implements Serializable{
  4. private static final long serialVersionUID = 7156818788190434192L;
  5. private String deviceID;
  6. private String BSSID;
  7. private long number_of_attacks;
  8. private long number_of_portscans;
  9. /**
  10. * @return the deviceID
  11. */
  12. public String getDeviceID() {
  13. return deviceID;
  14. }
  15. /**
  16. * @param deviceID the deviceID to set
  17. */
  18. public void setDeviceID(String deviceID) {
  19. this.deviceID = deviceID;
  20. }
  21. /**
  22. * @return the bSSID
  23. */
  24. public String getBSSID() {
  25. return BSSID;
  26. }
  27. /**
  28. * @param bSSID the bSSID to set
  29. */
  30. public void setBSSID(String bSSID) {
  31. BSSID = bSSID;
  32. }
  33. /**
  34. * @return the number_of_attacks
  35. */
  36. public long getNumber_of_attacks() {
  37. return number_of_attacks;
  38. }
  39. /**
  40. * @param number_of_attacks the number_of_attacks to set
  41. */
  42. public void setNumber_of_attacks(long number_of_attacks) {
  43. this.number_of_attacks = number_of_attacks;
  44. }
  45. /**
  46. * @return the number_of_portscans
  47. */
  48. public long getNumber_of_portscans() {
  49. return number_of_portscans;
  50. }
  51. /**
  52. * @param number_of_portscans the number_of_portscans to set
  53. */
  54. public void setNumber_of_portscans(long number_of_portscans) {
  55. this.number_of_portscans = number_of_portscans;
  56. }
  57. }