-
public interface BeaconData
Server-side data associated with a beacon. Requires registration of a web service to fetch the data.
-
-
Method Summary
Modifier and Type Method Description abstract Double
getLatitude()
abstract void
setLatitude(Double latitude)
abstract void
setLongitude(Double longitude)
abstract Double
getLongitude()
abstract String
get(String key)
abstract void
set(String key, String value)
abstract void
sync(BeaconDataNotifier notifier)
abstract boolean
isDirty()
-
-
Method Detail
-
getLatitude
abstract Double getLatitude()
-
setLatitude
abstract void setLatitude(Double latitude)
-
setLongitude
abstract void setLongitude(Double longitude)
-
getLongitude
abstract Double getLongitude()
-
sync
abstract void sync(BeaconDataNotifier notifier)
-
isDirty
abstract boolean isDirty()
-
-
-
-