Class DeviceInfo

java.lang.Object
com.iizix.device.DeviceInfo

public class DeviceInfo extends Object
Class holding information about a device, its potential information and location.

This class is mapped to the server database table IZS.DEVICE. dev_id BIGINT NOT NULL PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, -- Device ID uid BIGINT NOT NULL , -- User ID device_uuid CHAR(20) NOT NULL , -- Device UUID (version 4) created BIGINT NOT NULL , -- Date in epoch (GMT) milliseconds when device entry was first created. ip_address VARCHAR(41) NOT NULL , -- Max: IPv6 address [1234:5678:0123:4567:1234:5678:0123:4567] longitude DOUBLE , -- If non-NULL, the longitude of the IP address or the user's location when accepted latitude DOUBLE , -- If non-NULL, the latitude of the IP address or the user's location when accepted json_gz BLOB(16M) NOT NULL , -- Max 16 MB data in packed GZIP JSON format

Author:
Christopher Mindus
  • Constructor Details

    • DeviceInfo

      public DeviceInfo()