Interface PushRegistration
public interface PushRegistration
Represents a push registration in a mobile application.
-
Method Summary
Modifier and TypeMethodDescriptionThe unique device ID, used when sending a notification to a specific device.The device model, provided by the device during registration.The device's form factor: phone, tablet or browsergetGroup()
The push group.getId()
Push registration ID.The device locale.The push provider.The user name.
-
Method Details
-
getId
String getId()Push registration ID.- Returns:
- ID
-
getDeviceId
String getDeviceId()The unique device ID, used when sending a notification to a specific device.- Returns:
- deviceId
-
getDeviceModel
String getDeviceModel()The device model, provided by the device during registration.- Returns:
- device model
-
getFormFactor
FormFactor getFormFactor()The device's form factor: phone, tablet or browser- Returns:
- form factor
-
getGroup
String getGroup()The push group.- Returns:
- push group
-
getProvider
Provider getProvider()The push provider.- Returns:
- push provider
-
getLocale
String getLocale()The device locale.- Returns:
- locale
-
getUsername
String getUsername()The user name.- Returns:
- username
-