WIMM Labs


com.wimm.framework.service
Class SyncService.Intent

java.lang.Object
  extended by com.wimm.framework.service.SyncService.Intent
Enclosing class:
SyncService

public static final class SyncService.Intent
extends Object

WIMM sync service Intents and their extras.

Refer to WIMM Developer's Guide on Sync Preference settings for more information about developing Sync Preference supported MicroApp.

Since:
WIMM SDK 1.0.4
See Also:
SyncPreference

Field Summary
static String ACTION_NOTIFY_PREFS_MOD
          Broadcast Action: Sent when a change in an application preference settings is detected during a sync process.
static String EXTRA_MODIFIED_PREFS
          An ArrayList<String> extra in ACTION_NOTIFY_PREFS_MOD.
 
Constructor Summary
SyncService.Intent()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ACTION_NOTIFY_PREFS_MOD

public static final String ACTION_NOTIFY_PREFS_MOD
Broadcast Action: Sent when a change in an application preference settings is detected during a sync process.

Includes the following extras:

EXTRA_MODIFIED_PREFS: ArrayList<String> of preference setting keys that have changed.

Since:
WIMM SDK 1.1
See Also:
Constant Field Values

EXTRA_MODIFIED_PREFS

public static final String EXTRA_MODIFIED_PREFS
An ArrayList<String> extra in ACTION_NOTIFY_PREFS_MOD.

An ArrayList<String> of preference setting keys that have changed.

Since:
WIMM SDK 1.1
See Also:
Constant Field Values
Constructor Detail

SyncService.Intent

public SyncService.Intent()

WIMM Labs