public class RichMessagePushUIConfiguration
extends java.lang.Object
| Constructor and Description |
|---|
RichMessagePushUIConfiguration() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCategory()
Get notification category.
|
android.app.PendingIntent |
getContentIntent()
Get PendingIntent for notification click.
|
int |
getIconBackgroundColor()
Get background color for small icon if large icon is not available.
|
int |
getLedColour()
Get led color.
|
int |
getLedOffMilliseconds()
Get time period when led light will be switched off after notification was received.
|
int |
getLedOnMilliseconds()
Get time period when led light will be switched on after notification was received.
|
int |
getPriority()
Get notification priority.
|
int |
getSmallIconId()
Get small icon for system notification.
|
android.net.Uri |
getSoundUri()
Get sound for notification.
|
long[] |
getVibratePattern()
Get vibration pattern for notification.
|
int |
getVisibility()
Get notification visibility.
|
void |
setCategory(java.lang.String category)
Set notification category.
|
void |
setContentIntent(android.app.PendingIntent contentIntent)
Set PendingIntent for notification click.
|
void |
setIconBackgroundColor(int iconBackgroundColor)
Set background color for small icon if large icon is not available.
|
void |
setLedColour(int ledColour)
Set colour of led light.
|
void |
setLedOffMilliseconds(int ledOffMilliseconds)
Set time period when led light will be switched off after notification was received.
|
void |
setLedOnMilliseconds(int ledOnMilliseconds)
Set time period when led light will be switched on after notification was received.
|
void |
setPriority(int priority)
Set notification priority.
|
void |
setSmallIconId(int smallIconId)
Set small icon for system notification.
|
void |
setSoundUri(android.net.Uri soundUri)
Set sound for notification.
|
void |
setVibratePattern(long[] vibratePattern)
Set vibration pattern for notification.
|
void |
setVisibility(int visibility)
Set notification visibility.
|
public int getSmallIconId()
public void setSmallIconId(int smallIconId)
smallIconId - Small icon for system notification.public android.net.Uri getSoundUri()
public void setSoundUri(android.net.Uri soundUri)
soundUri - Sound for notification.public long[] getVibratePattern()
public void setVibratePattern(long[] vibratePattern)
vibratePattern - Vibration pattern for notification.public java.lang.String getCategory()
public void setCategory(java.lang.String category)
category - Notification category.public int getPriority()
public void setPriority(int priority)
priority - Notification priority.public int getVisibility()
public void setVisibility(int visibility)
visibility - Notification visibility.public int getIconBackgroundColor()
public void setIconBackgroundColor(int iconBackgroundColor)
iconBackgroundColor - Background color for small icon if large icon is not available.public int getLedColour()
public int getLedOnMilliseconds()
public int getLedOffMilliseconds()
public void setLedColour(int ledColour)
ledColour - Colour of led light.public void setLedOnMilliseconds(int ledOnMilliseconds)
ledOnMilliseconds - Time period when led light will be switched on after notification was received.public void setLedOffMilliseconds(int ledOffMilliseconds)
ledOffMilliseconds - Time period when led light will be switched off after notification was received.public android.app.PendingIntent getContentIntent()
public void setContentIntent(android.app.PendingIntent contentIntent)
contentIntent - PendingIntent for notification click.