Package com.zendesk.sdk.model.settings
Class SafeMobileSettings
- java.lang.Object
-
- com.zendesk.sdk.model.settings.SafeMobileSettings
-
public class SafeMobileSettings extends java.lang.ObjectWrapsMobileSettingsand makes settings call null-safe.This class will generally default to false or 0 for return values if they don't exist.
Created by Zendesk on 28/07/15.
-
-
Constructor Summary
Constructors Constructor and Description SafeMobileSettings(MobileSettings mobileSettings)Creates an instance of SafeMobileSettings
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description AuthenticationTypegetAuthenticationType()Gets the authentication type.java.util.List<java.lang.String>getContactZendeskTags()Gets the tags to use for theContactZendeskcomponents.java.lang.StringgetHelpCenterLocale()Gets the default locale of the help centerHelpCenterSettingsgetHelpCenterSettings()Gets the help center settingslonggetMaxAttachmentSize()Gets the maximum attachment size allowed in bytesMobileSettingsgetMobileSettings()Gets the rawMobileSettingsobject.longgetRateMyAppDelay()Gets the rate my app delay as a long.longgetRateMyAppDuration()Gets the duration of rate my app fromRateMyAppSettings.java.lang.StringgetRateMyAppStoreUrl()Gets the App's play store URL fromRateMyAppSettingsjava.util.List<java.lang.String>getRateMyAppTags()Gets the list of tags for rate my app fromRateMyAppSettings.longgetRateMyAppVisits()Gets the number of rate my app visits fromRateMyAppSettings.booleanhasHelpCenterSettings()Checks if we have Help Center settings or not.booleanisAttachmentsEnabled()Checks if attachments are enabled or notbooleanisConversationsEnabled()Checks if conversations are enabled or notbooleanisHelpCenterEnabled()Checks if help center is enabled or not.booleanisRateMyAppEnabled()Checks if rate my app is enabled or notbooleanisTicketFormSupportAvailable()Gets if TicketForm support is available, or not.
-
-
-
Constructor Detail
-
SafeMobileSettings
public SafeMobileSettings(MobileSettings mobileSettings)
Creates an instance of SafeMobileSettings- Parameters:
mobileSettings- The mobile settings to wrap
-
-
Method Detail
-
getMobileSettings
public MobileSettings getMobileSettings()
Gets the rawMobileSettingsobject.- Returns:
- The raw
MobileSettingsobject.
-
isConversationsEnabled
public boolean isConversationsEnabled()
Checks if conversations are enabled or not- Returns:
- true only if conversations are enabled, false if they are not or the settings are missing
-
isAttachmentsEnabled
public boolean isAttachmentsEnabled()
Checks if attachments are enabled or not- Returns:
- true only if they are enabled, false if they are not or the settings are missing
-
getMaxAttachmentSize
public long getMaxAttachmentSize()
Gets the maximum attachment size allowed in bytes- Returns:
- The maximum attachment size allowed in bytes, or 0 if the settings are missing
-
hasHelpCenterSettings
public boolean hasHelpCenterSettings()
Checks if we have Help Center settings or not.- Returns:
- true if we have a non-null
HelpCenterSettings, false if not.
-
isHelpCenterEnabled
public boolean isHelpCenterEnabled()
Checks if help center is enabled or not.- Returns:
- true only if help center is enabled, false if it is not or if the settings are missing
-
getHelpCenterLocale
public java.lang.String getHelpCenterLocale()
Gets the default locale of the help center- Returns:
- the default locale of the help center, or the empty string if the settings are missing
-
isRateMyAppEnabled
public boolean isRateMyAppEnabled()
Checks if rate my app is enabled or not- Returns:
- true only if rate my app is
-
getRateMyAppStoreUrl
public java.lang.String getRateMyAppStoreUrl()
Gets the App's play store URL fromRateMyAppSettings- Returns:
- The store url from
RateMyAppSettings, or the empty string if null or unknown
-
getRateMyAppDelay
public long getRateMyAppDelay()
Gets the rate my app delay as a long.- Returns:
- the rate my app delay from
RateMyAppSettings, or 0L if null or unknown.
-
getRateMyAppDuration
public long getRateMyAppDuration()
Gets the duration of rate my app fromRateMyAppSettings.- Returns:
- the duration of rate my app from
RateMyAppSettings, or 0L if null or unknown.
-
getRateMyAppVisits
public long getRateMyAppVisits()
Gets the number of rate my app visits fromRateMyAppSettings.- Returns:
- the number of rate my app visits from
RateMyAppSettings, or 0L if null or unknown.
-
getRateMyAppTags
public java.util.List<java.lang.String> getRateMyAppTags()
Gets the list of tags for rate my app fromRateMyAppSettings.- Returns:
- the list of tags for rate my app, or an empty list if null or unknown.
-
getAuthenticationType
public AuthenticationType getAuthenticationType()
Gets the authentication type.- Returns:
- The authentication type, or null if we don't have one.
-
getHelpCenterSettings
public HelpCenterSettings getHelpCenterSettings()
Gets the help center settingsmobileSettings.getSdkSettings()is NonNull but let's check it anyway, in case that is changed.- Returns:
- the HelpCenterSettings if we have them, null otherwise
-
getContactZendeskTags
public java.util.List<java.lang.String> getContactZendeskTags()
Gets the tags to use for theContactZendeskcomponents.
-
isTicketFormSupportAvailable
public boolean isTicketFormSupportAvailable()
Gets if TicketForm support is available, or not.- Returns:
trueif TicketForm support is available,falseif not.
-
-