All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.pinpoint.model.APNSMessage Maven / Gradle / Ivy

/*
 * Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

package com.amazonaws.services.pinpoint.model;

import java.io.Serializable;

/**
 * APNS Message.
 */
public class APNSMessage implements Serializable {
    /**
     * The action that occurs if the user taps a push notification delivered by
     * the campaign: OPEN_APP - Your app launches, or it becomes the foreground
     * app if it has been sent to the background. This is the default action.
     * DEEP_LINK - Uses deep linking features in iOS and Android to open your
     * app and display a designated user interface within the app. URL - The
     * default mobile browser on the user's device launches and opens a web page
     * at the URL you specify. Possible values include: OPEN_APP | DEEP_LINK |
     * URL
     * 

* Constraints:
* Allowed Values: OPEN_APP, DEEP_LINK, URL */ private String action; /** * Include this key when you want the system to modify the badge of your app * icon. If this key is not included in the dictionary, the badge is not * changed. To remove the badge, set the value of this key to 0. */ private Integer badge; /** * The message body of the notification, the email body or the text message. */ private String body; /** * Provide this key with a string value that represents the notification's * type. This value corresponds to the value in the identifier property of * one of your app's registered categories. */ private String category; /** * An ID that, if assigned to multiple messages, causes APNs to coalesce the * messages into a single push notification instead of delivering each * message individually. The value must not exceed 64 bytes. Amazon Pinpoint * uses this value to set the apns-collapse-id request header when it sends * the message to APNs. */ private String collapseId; /** * The data payload used for a silent push. This payload is added to the * notifications' data.pinpoint.jsonBody' object */ private java.util.Map data; /** * The URL that points to a video used in the push notification. */ private String mediaUrl; /** * The preferred authentication method, either "CERTIFICATE" or "TOKEN" */ private String preferredAuthenticationMethod; /** * The message priority. Amazon Pinpoint uses this value to set the * apns-priority request header when it sends the message to APNs. Accepts * the following values: "5" - Low priority. Messages might be delayed, * delivered in groups, and throttled. "10" - High priority. Messages are * sent immediately. High priority messages must cause an alert, sound, or * badge on the receiving device. The default value is "10". The equivalent * values for FCM or GCM messages are "normal" and "high". Amazon Pinpoint * accepts these values for APNs messages and converts them. For more * information about the apns-priority parameter, see Communicating with * APNs in the APNs Local and Remote Notification Programming Guide. */ private String priority; /** * The Raw JSON formatted string to be used as the payload. This value * overrides the message. */ private String rawContent; /** * Indicates if the message should display on the users device. Silent * pushes can be used for Remote Configuration and Phone Home use cases. */ private Boolean silentPush; /** * Include this key when you want the system to play a sound. The value of * this key is the name of a sound file in your app's main bundle or in the * Library/Sounds folder of your app's data container. If the sound file * cannot be found, or if you specify defaultfor the value, the system plays * the default alert sound. */ private String sound; /** * Default message substitutions. Can be overridden by individual address * substitutions. */ private java.util.Map> substitutions; /** * Provide this key with a string value that represents the app-specific * identifier for grouping notifications. If you provide a Notification * Content app extension, you can use this value to group your notifications * together. */ private String threadId; /** * The length of time (in seconds) that APNs stores and attempts to deliver * the message. If the value is 0, APNs does not store the message or * attempt to deliver it more than once. Amazon Pinpoint uses this value to * set the apns-expiration request header when it sends the message to APNs. */ private Integer timeToLive; /** * The message title that displays above the message on the user's device. */ private String title; /** * The URL to open in the user's mobile browser. Used if the value for * Action is URL. */ private String url; /** * The action that occurs if the user taps a push notification delivered by * the campaign: OPEN_APP - Your app launches, or it becomes the foreground * app if it has been sent to the background. This is the default action. * DEEP_LINK - Uses deep linking features in iOS and Android to open your * app and display a designated user interface within the app. URL - The * default mobile browser on the user's device launches and opens a web page * at the URL you specify. Possible values include: OPEN_APP | DEEP_LINK | * URL *

* Constraints:
* Allowed Values: OPEN_APP, DEEP_LINK, URL * * @return The action that occurs if the user taps a push notification * delivered by the campaign: OPEN_APP - Your app launches, or it * becomes the foreground app if it has been sent to the background. * This is the default action. DEEP_LINK - Uses deep linking * features in iOS and Android to open your app and display a * designated user interface within the app. URL - The default * mobile browser on the user's device launches and opens a web page * at the URL you specify. Possible values include: OPEN_APP | * DEEP_LINK | URL * @see Action */ public String getAction() { return action; } /** * The action that occurs if the user taps a push notification delivered by * the campaign: OPEN_APP - Your app launches, or it becomes the foreground * app if it has been sent to the background. This is the default action. * DEEP_LINK - Uses deep linking features in iOS and Android to open your * app and display a designated user interface within the app. URL - The * default mobile browser on the user's device launches and opens a web page * at the URL you specify. Possible values include: OPEN_APP | DEEP_LINK | * URL *

* Constraints:
* Allowed Values: OPEN_APP, DEEP_LINK, URL * * @param action The action that occurs if the user taps a push notification * delivered by the campaign: OPEN_APP - Your app launches, or it * becomes the foreground app if it has been sent to the * background. This is the default action. DEEP_LINK - Uses deep * linking features in iOS and Android to open your app and * display a designated user interface within the app. URL - The * default mobile browser on the user's device launches and opens * a web page at the URL you specify. Possible values include: * OPEN_APP | DEEP_LINK | URL * @see Action */ public void setAction(String action) { this.action = action; } /** * The action that occurs if the user taps a push notification delivered by * the campaign: OPEN_APP - Your app launches, or it becomes the foreground * app if it has been sent to the background. This is the default action. * DEEP_LINK - Uses deep linking features in iOS and Android to open your * app and display a designated user interface within the app. URL - The * default mobile browser on the user's device launches and opens a web page * at the URL you specify. Possible values include: OPEN_APP | DEEP_LINK | * URL *

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Allowed Values: OPEN_APP, DEEP_LINK, URL * * @param action The action that occurs if the user taps a push notification * delivered by the campaign: OPEN_APP - Your app launches, or it * becomes the foreground app if it has been sent to the * background. This is the default action. DEEP_LINK - Uses deep * linking features in iOS and Android to open your app and * display a designated user interface within the app. URL - The * default mobile browser on the user's device launches and opens * a web page at the URL you specify. Possible values include: * OPEN_APP | DEEP_LINK | URL * @return A reference to this updated object so that method calls can be * chained together. * @see Action */ public APNSMessage withAction(String action) { this.action = action; return this; } /** * The action that occurs if the user taps a push notification delivered by * the campaign: OPEN_APP - Your app launches, or it becomes the foreground * app if it has been sent to the background. This is the default action. * DEEP_LINK - Uses deep linking features in iOS and Android to open your * app and display a designated user interface within the app. URL - The * default mobile browser on the user's device launches and opens a web page * at the URL you specify. Possible values include: OPEN_APP | DEEP_LINK | * URL *

* Constraints:
* Allowed Values: OPEN_APP, DEEP_LINK, URL * * @param action The action that occurs if the user taps a push notification * delivered by the campaign: OPEN_APP - Your app launches, or it * becomes the foreground app if it has been sent to the * background. This is the default action. DEEP_LINK - Uses deep * linking features in iOS and Android to open your app and * display a designated user interface within the app. URL - The * default mobile browser on the user's device launches and opens * a web page at the URL you specify. Possible values include: * OPEN_APP | DEEP_LINK | URL * @see Action */ public void setAction(Action action) { this.action = action.toString(); } /** * The action that occurs if the user taps a push notification delivered by * the campaign: OPEN_APP - Your app launches, or it becomes the foreground * app if it has been sent to the background. This is the default action. * DEEP_LINK - Uses deep linking features in iOS and Android to open your * app and display a designated user interface within the app. URL - The * default mobile browser on the user's device launches and opens a web page * at the URL you specify. Possible values include: OPEN_APP | DEEP_LINK | * URL *

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Allowed Values: OPEN_APP, DEEP_LINK, URL * * @param action The action that occurs if the user taps a push notification * delivered by the campaign: OPEN_APP - Your app launches, or it * becomes the foreground app if it has been sent to the * background. This is the default action. DEEP_LINK - Uses deep * linking features in iOS and Android to open your app and * display a designated user interface within the app. URL - The * default mobile browser on the user's device launches and opens * a web page at the URL you specify. Possible values include: * OPEN_APP | DEEP_LINK | URL * @return A reference to this updated object so that method calls can be * chained together. * @see Action */ public APNSMessage withAction(Action action) { this.action = action.toString(); return this; } /** * Include this key when you want the system to modify the badge of your app * icon. If this key is not included in the dictionary, the badge is not * changed. To remove the badge, set the value of this key to 0. * * @return Include this key when you want the system to modify the badge of * your app icon. If this key is not included in the dictionary, the * badge is not changed. To remove the badge, set the value of this * key to 0. */ public Integer getBadge() { return badge; } /** * Include this key when you want the system to modify the badge of your app * icon. If this key is not included in the dictionary, the badge is not * changed. To remove the badge, set the value of this key to 0. * * @param badge Include this key when you want the system to modify the * badge of your app icon. If this key is not included in the * dictionary, the badge is not changed. To remove the badge, set * the value of this key to 0. */ public void setBadge(Integer badge) { this.badge = badge; } /** * Include this key when you want the system to modify the badge of your app * icon. If this key is not included in the dictionary, the badge is not * changed. To remove the badge, set the value of this key to 0. *

* Returns a reference to this object so that method calls can be chained * together. * * @param badge Include this key when you want the system to modify the * badge of your app icon. If this key is not included in the * dictionary, the badge is not changed. To remove the badge, set * the value of this key to 0. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withBadge(Integer badge) { this.badge = badge; return this; } /** * The message body of the notification, the email body or the text message. * * @return The message body of the notification, the email body or the text * message. */ public String getBody() { return body; } /** * The message body of the notification, the email body or the text message. * * @param body The message body of the notification, the email body or the * text message. */ public void setBody(String body) { this.body = body; } /** * The message body of the notification, the email body or the text message. *

* Returns a reference to this object so that method calls can be chained * together. * * @param body The message body of the notification, the email body or the * text message. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withBody(String body) { this.body = body; return this; } /** * Provide this key with a string value that represents the notification's * type. This value corresponds to the value in the identifier property of * one of your app's registered categories. * * @return Provide this key with a string value that represents the * notification's type. This value corresponds to the value in the * identifier property of one of your app's registered categories. */ public String getCategory() { return category; } /** * Provide this key with a string value that represents the notification's * type. This value corresponds to the value in the identifier property of * one of your app's registered categories. * * @param category Provide this key with a string value that represents the * notification's type. This value corresponds to the value in * the identifier property of one of your app's registered * categories. */ public void setCategory(String category) { this.category = category; } /** * Provide this key with a string value that represents the notification's * type. This value corresponds to the value in the identifier property of * one of your app's registered categories. *

* Returns a reference to this object so that method calls can be chained * together. * * @param category Provide this key with a string value that represents the * notification's type. This value corresponds to the value in * the identifier property of one of your app's registered * categories. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withCategory(String category) { this.category = category; return this; } /** * An ID that, if assigned to multiple messages, causes APNs to coalesce the * messages into a single push notification instead of delivering each * message individually. The value must not exceed 64 bytes. Amazon Pinpoint * uses this value to set the apns-collapse-id request header when it sends * the message to APNs. * * @return An ID that, if assigned to multiple messages, causes APNs to * coalesce the messages into a single push notification instead of * delivering each message individually. The value must not exceed * 64 bytes. Amazon Pinpoint uses this value to set the * apns-collapse-id request header when it sends the message to * APNs. */ public String getCollapseId() { return collapseId; } /** * An ID that, if assigned to multiple messages, causes APNs to coalesce the * messages into a single push notification instead of delivering each * message individually. The value must not exceed 64 bytes. Amazon Pinpoint * uses this value to set the apns-collapse-id request header when it sends * the message to APNs. * * @param collapseId An ID that, if assigned to multiple messages, causes * APNs to coalesce the messages into a single push notification * instead of delivering each message individually. The value * must not exceed 64 bytes. Amazon Pinpoint uses this value to * set the apns-collapse-id request header when it sends the * message to APNs. */ public void setCollapseId(String collapseId) { this.collapseId = collapseId; } /** * An ID that, if assigned to multiple messages, causes APNs to coalesce the * messages into a single push notification instead of delivering each * message individually. The value must not exceed 64 bytes. Amazon Pinpoint * uses this value to set the apns-collapse-id request header when it sends * the message to APNs. *

* Returns a reference to this object so that method calls can be chained * together. * * @param collapseId An ID that, if assigned to multiple messages, causes * APNs to coalesce the messages into a single push notification * instead of delivering each message individually. The value * must not exceed 64 bytes. Amazon Pinpoint uses this value to * set the apns-collapse-id request header when it sends the * message to APNs. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withCollapseId(String collapseId) { this.collapseId = collapseId; return this; } /** * The data payload used for a silent push. This payload is added to the * notifications' data.pinpoint.jsonBody' object * * @return The data payload used for a silent push. This payload is added to * the notifications' data.pinpoint.jsonBody' object */ public java.util.Map getData() { return data; } /** * The data payload used for a silent push. This payload is added to the * notifications' data.pinpoint.jsonBody' object * * @param data The data payload used for a silent push. This payload is * added to the notifications' data.pinpoint.jsonBody' object */ public void setData(java.util.Map data) { this.data = data; } /** * The data payload used for a silent push. This payload is added to the * notifications' data.pinpoint.jsonBody' object *

* Returns a reference to this object so that method calls can be chained * together. * * @param data The data payload used for a silent push. This payload is * added to the notifications' data.pinpoint.jsonBody' object * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withData(java.util.Map data) { this.data = data; return this; } /** * The data payload used for a silent push. This payload is added to the * notifications' data.pinpoint.jsonBody' object *

* The method adds a new key-value pair into Data parameter, and returns a * reference to this object so that method calls can be chained together. * * @param key The key of the entry to be added into Data. * @param value The corresponding value of the entry to be added into Data. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage addDataEntry(String key, String value) { if (null == this.data) { this.data = new java.util.HashMap(); } if (this.data.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.data.put(key, value); return this; } /** * Removes all the entries added into Data. *

* Returns a reference to this object so that method calls can be chained * together. */ public APNSMessage clearDataEntries() { this.data = null; return this; } /** * The URL that points to a video used in the push notification. * * @return The URL that points to a video used in the push notification. */ public String getMediaUrl() { return mediaUrl; } /** * The URL that points to a video used in the push notification. * * @param mediaUrl The URL that points to a video used in the push * notification. */ public void setMediaUrl(String mediaUrl) { this.mediaUrl = mediaUrl; } /** * The URL that points to a video used in the push notification. *

* Returns a reference to this object so that method calls can be chained * together. * * @param mediaUrl The URL that points to a video used in the push * notification. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withMediaUrl(String mediaUrl) { this.mediaUrl = mediaUrl; return this; } /** * The preferred authentication method, either "CERTIFICATE" or "TOKEN" * * @return The preferred authentication method, either "CERTIFICATE" or * "TOKEN" */ public String getPreferredAuthenticationMethod() { return preferredAuthenticationMethod; } /** * The preferred authentication method, either "CERTIFICATE" or "TOKEN" * * @param preferredAuthenticationMethod The preferred authentication method, * either "CERTIFICATE" or "TOKEN" */ public void setPreferredAuthenticationMethod(String preferredAuthenticationMethod) { this.preferredAuthenticationMethod = preferredAuthenticationMethod; } /** * The preferred authentication method, either "CERTIFICATE" or "TOKEN" *

* Returns a reference to this object so that method calls can be chained * together. * * @param preferredAuthenticationMethod The preferred authentication method, * either "CERTIFICATE" or "TOKEN" * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withPreferredAuthenticationMethod(String preferredAuthenticationMethod) { this.preferredAuthenticationMethod = preferredAuthenticationMethod; return this; } /** * The message priority. Amazon Pinpoint uses this value to set the * apns-priority request header when it sends the message to APNs. Accepts * the following values: "5" - Low priority. Messages might be delayed, * delivered in groups, and throttled. "10" - High priority. Messages are * sent immediately. High priority messages must cause an alert, sound, or * badge on the receiving device. The default value is "10". The equivalent * values for FCM or GCM messages are "normal" and "high". Amazon Pinpoint * accepts these values for APNs messages and converts them. For more * information about the apns-priority parameter, see Communicating with * APNs in the APNs Local and Remote Notification Programming Guide. * * @return The message priority. Amazon Pinpoint uses this value to set the * apns-priority request header when it sends the message to APNs. * Accepts the following values: "5" - Low priority. Messages might * be delayed, delivered in groups, and throttled. "10" - High * priority. Messages are sent immediately. High priority messages * must cause an alert, sound, or badge on the receiving device. The * default value is "10". The equivalent values for FCM or GCM * messages are "normal" and "high". Amazon Pinpoint accepts these * values for APNs messages and converts them. For more information * about the apns-priority parameter, see Communicating with APNs in * the APNs Local and Remote Notification Programming Guide. */ public String getPriority() { return priority; } /** * The message priority. Amazon Pinpoint uses this value to set the * apns-priority request header when it sends the message to APNs. Accepts * the following values: "5" - Low priority. Messages might be delayed, * delivered in groups, and throttled. "10" - High priority. Messages are * sent immediately. High priority messages must cause an alert, sound, or * badge on the receiving device. The default value is "10". The equivalent * values for FCM or GCM messages are "normal" and "high". Amazon Pinpoint * accepts these values for APNs messages and converts them. For more * information about the apns-priority parameter, see Communicating with * APNs in the APNs Local and Remote Notification Programming Guide. * * @param priority The message priority. Amazon Pinpoint uses this value to * set the apns-priority request header when it sends the message * to APNs. Accepts the following values: "5" - Low priority. * Messages might be delayed, delivered in groups, and throttled. * "10" - High priority. Messages are sent immediately. High * priority messages must cause an alert, sound, or badge on the * receiving device. The default value is "10". The equivalent * values for FCM or GCM messages are "normal" and "high". Amazon * Pinpoint accepts these values for APNs messages and converts * them. For more information about the apns-priority parameter, * see Communicating with APNs in the APNs Local and Remote * Notification Programming Guide. */ public void setPriority(String priority) { this.priority = priority; } /** * The message priority. Amazon Pinpoint uses this value to set the * apns-priority request header when it sends the message to APNs. Accepts * the following values: "5" - Low priority. Messages might be delayed, * delivered in groups, and throttled. "10" - High priority. Messages are * sent immediately. High priority messages must cause an alert, sound, or * badge on the receiving device. The default value is "10". The equivalent * values for FCM or GCM messages are "normal" and "high". Amazon Pinpoint * accepts these values for APNs messages and converts them. For more * information about the apns-priority parameter, see Communicating with * APNs in the APNs Local and Remote Notification Programming Guide. *

* Returns a reference to this object so that method calls can be chained * together. * * @param priority The message priority. Amazon Pinpoint uses this value to * set the apns-priority request header when it sends the message * to APNs. Accepts the following values: "5" - Low priority. * Messages might be delayed, delivered in groups, and throttled. * "10" - High priority. Messages are sent immediately. High * priority messages must cause an alert, sound, or badge on the * receiving device. The default value is "10". The equivalent * values for FCM or GCM messages are "normal" and "high". Amazon * Pinpoint accepts these values for APNs messages and converts * them. For more information about the apns-priority parameter, * see Communicating with APNs in the APNs Local and Remote * Notification Programming Guide. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withPriority(String priority) { this.priority = priority; return this; } /** * The Raw JSON formatted string to be used as the payload. This value * overrides the message. * * @return The Raw JSON formatted string to be used as the payload. This * value overrides the message. */ public String getRawContent() { return rawContent; } /** * The Raw JSON formatted string to be used as the payload. This value * overrides the message. * * @param rawContent The Raw JSON formatted string to be used as the * payload. This value overrides the message. */ public void setRawContent(String rawContent) { this.rawContent = rawContent; } /** * The Raw JSON formatted string to be used as the payload. This value * overrides the message. *

* Returns a reference to this object so that method calls can be chained * together. * * @param rawContent The Raw JSON formatted string to be used as the * payload. This value overrides the message. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withRawContent(String rawContent) { this.rawContent = rawContent; return this; } /** * Indicates if the message should display on the users device. Silent * pushes can be used for Remote Configuration and Phone Home use cases. * * @return Indicates if the message should display on the users device. * Silent pushes can be used for Remote Configuration and Phone Home * use cases. */ public Boolean isSilentPush() { return silentPush; } /** * Indicates if the message should display on the users device. Silent * pushes can be used for Remote Configuration and Phone Home use cases. * * @return Indicates if the message should display on the users device. * Silent pushes can be used for Remote Configuration and Phone Home * use cases. */ public Boolean getSilentPush() { return silentPush; } /** * Indicates if the message should display on the users device. Silent * pushes can be used for Remote Configuration and Phone Home use cases. * * @param silentPush Indicates if the message should display on the users * device. Silent pushes can be used for Remote Configuration and * Phone Home use cases. */ public void setSilentPush(Boolean silentPush) { this.silentPush = silentPush; } /** * Indicates if the message should display on the users device. Silent * pushes can be used for Remote Configuration and Phone Home use cases. *

* Returns a reference to this object so that method calls can be chained * together. * * @param silentPush Indicates if the message should display on the users * device. Silent pushes can be used for Remote Configuration and * Phone Home use cases. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withSilentPush(Boolean silentPush) { this.silentPush = silentPush; return this; } /** * Include this key when you want the system to play a sound. The value of * this key is the name of a sound file in your app's main bundle or in the * Library/Sounds folder of your app's data container. If the sound file * cannot be found, or if you specify defaultfor the value, the system plays * the default alert sound. * * @return Include this key when you want the system to play a sound. The * value of this key is the name of a sound file in your app's main * bundle or in the Library/Sounds folder of your app's data * container. If the sound file cannot be found, or if you specify * defaultfor the value, the system plays the default alert sound. */ public String getSound() { return sound; } /** * Include this key when you want the system to play a sound. The value of * this key is the name of a sound file in your app's main bundle or in the * Library/Sounds folder of your app's data container. If the sound file * cannot be found, or if you specify defaultfor the value, the system plays * the default alert sound. * * @param sound Include this key when you want the system to play a sound. * The value of this key is the name of a sound file in your * app's main bundle or in the Library/Sounds folder of your * app's data container. If the sound file cannot be found, or if * you specify defaultfor the value, the system plays the default * alert sound. */ public void setSound(String sound) { this.sound = sound; } /** * Include this key when you want the system to play a sound. The value of * this key is the name of a sound file in your app's main bundle or in the * Library/Sounds folder of your app's data container. If the sound file * cannot be found, or if you specify defaultfor the value, the system plays * the default alert sound. *

* Returns a reference to this object so that method calls can be chained * together. * * @param sound Include this key when you want the system to play a sound. * The value of this key is the name of a sound file in your * app's main bundle or in the Library/Sounds folder of your * app's data container. If the sound file cannot be found, or if * you specify defaultfor the value, the system plays the default * alert sound. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withSound(String sound) { this.sound = sound; return this; } /** * Default message substitutions. Can be overridden by individual address * substitutions. * * @return Default message substitutions. Can be overridden by individual * address substitutions. */ public java.util.Map> getSubstitutions() { return substitutions; } /** * Default message substitutions. Can be overridden by individual address * substitutions. * * @param substitutions Default message substitutions. Can be overridden by * individual address substitutions. */ public void setSubstitutions(java.util.Map> substitutions) { this.substitutions = substitutions; } /** * Default message substitutions. Can be overridden by individual address * substitutions. *

* Returns a reference to this object so that method calls can be chained * together. * * @param substitutions Default message substitutions. Can be overridden by * individual address substitutions. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withSubstitutions(java.util.Map> substitutions) { this.substitutions = substitutions; return this; } /** * Default message substitutions. Can be overridden by individual address * substitutions. *

* The method adds a new key-value pair into Substitutions parameter, and * returns a reference to this object so that method calls can be chained * together. * * @param key The key of the entry to be added into Substitutions. * @param value The corresponding value of the entry to be added into * Substitutions. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage addSubstitutionsEntry(String key, java.util.List value) { if (null == this.substitutions) { this.substitutions = new java.util.HashMap>(); } if (this.substitutions.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.substitutions.put(key, value); return this; } /** * Removes all the entries added into Substitutions. *

* Returns a reference to this object so that method calls can be chained * together. */ public APNSMessage clearSubstitutionsEntries() { this.substitutions = null; return this; } /** * Provide this key with a string value that represents the app-specific * identifier for grouping notifications. If you provide a Notification * Content app extension, you can use this value to group your notifications * together. * * @return Provide this key with a string value that represents the * app-specific identifier for grouping notifications. If you * provide a Notification Content app extension, you can use this * value to group your notifications together. */ public String getThreadId() { return threadId; } /** * Provide this key with a string value that represents the app-specific * identifier for grouping notifications. If you provide a Notification * Content app extension, you can use this value to group your notifications * together. * * @param threadId Provide this key with a string value that represents the * app-specific identifier for grouping notifications. If you * provide a Notification Content app extension, you can use this * value to group your notifications together. */ public void setThreadId(String threadId) { this.threadId = threadId; } /** * Provide this key with a string value that represents the app-specific * identifier for grouping notifications. If you provide a Notification * Content app extension, you can use this value to group your notifications * together. *

* Returns a reference to this object so that method calls can be chained * together. * * @param threadId Provide this key with a string value that represents the * app-specific identifier for grouping notifications. If you * provide a Notification Content app extension, you can use this * value to group your notifications together. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withThreadId(String threadId) { this.threadId = threadId; return this; } /** * The length of time (in seconds) that APNs stores and attempts to deliver * the message. If the value is 0, APNs does not store the message or * attempt to deliver it more than once. Amazon Pinpoint uses this value to * set the apns-expiration request header when it sends the message to APNs. * * @return The length of time (in seconds) that APNs stores and attempts to * deliver the message. If the value is 0, APNs does not store the * message or attempt to deliver it more than once. Amazon Pinpoint * uses this value to set the apns-expiration request header when it * sends the message to APNs. */ public Integer getTimeToLive() { return timeToLive; } /** * The length of time (in seconds) that APNs stores and attempts to deliver * the message. If the value is 0, APNs does not store the message or * attempt to deliver it more than once. Amazon Pinpoint uses this value to * set the apns-expiration request header when it sends the message to APNs. * * @param timeToLive The length of time (in seconds) that APNs stores and * attempts to deliver the message. If the value is 0, APNs does * not store the message or attempt to deliver it more than once. * Amazon Pinpoint uses this value to set the apns-expiration * request header when it sends the message to APNs. */ public void setTimeToLive(Integer timeToLive) { this.timeToLive = timeToLive; } /** * The length of time (in seconds) that APNs stores and attempts to deliver * the message. If the value is 0, APNs does not store the message or * attempt to deliver it more than once. Amazon Pinpoint uses this value to * set the apns-expiration request header when it sends the message to APNs. *

* Returns a reference to this object so that method calls can be chained * together. * * @param timeToLive The length of time (in seconds) that APNs stores and * attempts to deliver the message. If the value is 0, APNs does * not store the message or attempt to deliver it more than once. * Amazon Pinpoint uses this value to set the apns-expiration * request header when it sends the message to APNs. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withTimeToLive(Integer timeToLive) { this.timeToLive = timeToLive; return this; } /** * The message title that displays above the message on the user's device. * * @return The message title that displays above the message on the user's * device. */ public String getTitle() { return title; } /** * The message title that displays above the message on the user's device. * * @param title The message title that displays above the message on the * user's device. */ public void setTitle(String title) { this.title = title; } /** * The message title that displays above the message on the user's device. *

* Returns a reference to this object so that method calls can be chained * together. * * @param title The message title that displays above the message on the * user's device. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withTitle(String title) { this.title = title; return this; } /** * The URL to open in the user's mobile browser. Used if the value for * Action is URL. * * @return The URL to open in the user's mobile browser. Used if the value * for Action is URL. */ public String getUrl() { return url; } /** * The URL to open in the user's mobile browser. Used if the value for * Action is URL. * * @param url The URL to open in the user's mobile browser. Used if the * value for Action is URL. */ public void setUrl(String url) { this.url = url; } /** * The URL to open in the user's mobile browser. Used if the value for * Action is URL. *

* Returns a reference to this object so that method calls can be chained * together. * * @param url The URL to open in the user's mobile browser. Used if the * value for Action is URL. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSMessage withUrl(String url) { this.url = url; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAction() != null) sb.append("Action: " + getAction() + ","); if (getBadge() != null) sb.append("Badge: " + getBadge() + ","); if (getBody() != null) sb.append("Body: " + getBody() + ","); if (getCategory() != null) sb.append("Category: " + getCategory() + ","); if (getCollapseId() != null) sb.append("CollapseId: " + getCollapseId() + ","); if (getData() != null) sb.append("Data: " + getData() + ","); if (getMediaUrl() != null) sb.append("MediaUrl: " + getMediaUrl() + ","); if (getPreferredAuthenticationMethod() != null) sb.append("PreferredAuthenticationMethod: " + getPreferredAuthenticationMethod() + ","); if (getPriority() != null) sb.append("Priority: " + getPriority() + ","); if (getRawContent() != null) sb.append("RawContent: " + getRawContent() + ","); if (getSilentPush() != null) sb.append("SilentPush: " + getSilentPush() + ","); if (getSound() != null) sb.append("Sound: " + getSound() + ","); if (getSubstitutions() != null) sb.append("Substitutions: " + getSubstitutions() + ","); if (getThreadId() != null) sb.append("ThreadId: " + getThreadId() + ","); if (getTimeToLive() != null) sb.append("TimeToLive: " + getTimeToLive() + ","); if (getTitle() != null) sb.append("Title: " + getTitle() + ","); if (getUrl() != null) sb.append("Url: " + getUrl()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAction() == null) ? 0 : getAction().hashCode()); hashCode = prime * hashCode + ((getBadge() == null) ? 0 : getBadge().hashCode()); hashCode = prime * hashCode + ((getBody() == null) ? 0 : getBody().hashCode()); hashCode = prime * hashCode + ((getCategory() == null) ? 0 : getCategory().hashCode()); hashCode = prime * hashCode + ((getCollapseId() == null) ? 0 : getCollapseId().hashCode()); hashCode = prime * hashCode + ((getData() == null) ? 0 : getData().hashCode()); hashCode = prime * hashCode + ((getMediaUrl() == null) ? 0 : getMediaUrl().hashCode()); hashCode = prime * hashCode + ((getPreferredAuthenticationMethod() == null) ? 0 : getPreferredAuthenticationMethod().hashCode()); hashCode = prime * hashCode + ((getPriority() == null) ? 0 : getPriority().hashCode()); hashCode = prime * hashCode + ((getRawContent() == null) ? 0 : getRawContent().hashCode()); hashCode = prime * hashCode + ((getSilentPush() == null) ? 0 : getSilentPush().hashCode()); hashCode = prime * hashCode + ((getSound() == null) ? 0 : getSound().hashCode()); hashCode = prime * hashCode + ((getSubstitutions() == null) ? 0 : getSubstitutions().hashCode()); hashCode = prime * hashCode + ((getThreadId() == null) ? 0 : getThreadId().hashCode()); hashCode = prime * hashCode + ((getTimeToLive() == null) ? 0 : getTimeToLive().hashCode()); hashCode = prime * hashCode + ((getTitle() == null) ? 0 : getTitle().hashCode()); hashCode = prime * hashCode + ((getUrl() == null) ? 0 : getUrl().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof APNSMessage == false) return false; APNSMessage other = (APNSMessage) obj; if (other.getAction() == null ^ this.getAction() == null) return false; if (other.getAction() != null && other.getAction().equals(this.getAction()) == false) return false; if (other.getBadge() == null ^ this.getBadge() == null) return false; if (other.getBadge() != null && other.getBadge().equals(this.getBadge()) == false) return false; if (other.getBody() == null ^ this.getBody() == null) return false; if (other.getBody() != null && other.getBody().equals(this.getBody()) == false) return false; if (other.getCategory() == null ^ this.getCategory() == null) return false; if (other.getCategory() != null && other.getCategory().equals(this.getCategory()) == false) return false; if (other.getCollapseId() == null ^ this.getCollapseId() == null) return false; if (other.getCollapseId() != null && other.getCollapseId().equals(this.getCollapseId()) == false) return false; if (other.getData() == null ^ this.getData() == null) return false; if (other.getData() != null && other.getData().equals(this.getData()) == false) return false; if (other.getMediaUrl() == null ^ this.getMediaUrl() == null) return false; if (other.getMediaUrl() != null && other.getMediaUrl().equals(this.getMediaUrl()) == false) return false; if (other.getPreferredAuthenticationMethod() == null ^ this.getPreferredAuthenticationMethod() == null) return false; if (other.getPreferredAuthenticationMethod() != null && other.getPreferredAuthenticationMethod().equals( this.getPreferredAuthenticationMethod()) == false) return false; if (other.getPriority() == null ^ this.getPriority() == null) return false; if (other.getPriority() != null && other.getPriority().equals(this.getPriority()) == false) return false; if (other.getRawContent() == null ^ this.getRawContent() == null) return false; if (other.getRawContent() != null && other.getRawContent().equals(this.getRawContent()) == false) return false; if (other.getSilentPush() == null ^ this.getSilentPush() == null) return false; if (other.getSilentPush() != null && other.getSilentPush().equals(this.getSilentPush()) == false) return false; if (other.getSound() == null ^ this.getSound() == null) return false; if (other.getSound() != null && other.getSound().equals(this.getSound()) == false) return false; if (other.getSubstitutions() == null ^ this.getSubstitutions() == null) return false; if (other.getSubstitutions() != null && other.getSubstitutions().equals(this.getSubstitutions()) == false) return false; if (other.getThreadId() == null ^ this.getThreadId() == null) return false; if (other.getThreadId() != null && other.getThreadId().equals(this.getThreadId()) == false) return false; if (other.getTimeToLive() == null ^ this.getTimeToLive() == null) return false; if (other.getTimeToLive() != null && other.getTimeToLive().equals(this.getTimeToLive()) == false) return false; if (other.getTitle() == null ^ this.getTitle() == null) return false; if (other.getTitle() != null && other.getTitle().equals(this.getTitle()) == false) return false; if (other.getUrl() == null ^ this.getUrl() == null) return false; if (other.getUrl() != null && other.getUrl().equals(this.getUrl()) == false) return false; return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy