Back to project page tapad-android-sdk.
The source code is released under:
MIT License
If you think the Android project tapad-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tapad.tracking; /*from w w w. j av a 2s . c om*/ import java.util.List; import com.tapad.tracking.deviceidentification.TypedIdentifier; /** * Locator for a the device identifier. Used to ensure opt-out * is honored immediately while avoiding static coupling. */ public interface DeviceIdentifier { /** * Get the primary id for the device. */ String get(); /** * Get the full list of all collected device identifiers with type information. */ String getTypedIds(); /** * Check if the user has opted out of personalization. */ boolean isOptedOut(); }