Package com.zendesk.sdk.feedback
Class BaseZendeskFeedbackConfiguration
- java.lang.Object
-
- com.zendesk.sdk.feedback.BaseZendeskFeedbackConfiguration
-
- All Implemented Interfaces:
- ZendeskFeedbackConfiguration, java.io.Serializable
public abstract class BaseZendeskFeedbackConfiguration extends java.lang.Object implements ZendeskFeedbackConfiguration, java.io.Serializable
Base class used to configure theFeedbackDialog
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description BaseZendeskFeedbackConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.String
getAdditionalInfo()
Gets any additional information that you wish to include in the request's descriptionjava.util.List<java.lang.String>
getTags()
Gets a list of tags to be included in the request that will be created by the feedback mechanisms-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.zendesk.sdk.feedback.ZendeskFeedbackConfiguration
getRequestSubject
-
-
-
-
Method Detail
-
getTags
public java.util.List<java.lang.String> getTags()
Description copied from interface:ZendeskFeedbackConfiguration
Gets a list of tags to be included in the request that will be created by the feedback mechanisms- Specified by:
getTags
in interfaceZendeskFeedbackConfiguration
- Returns:
- The list of tags to include, or null if you don't want any tags.
-
getAdditionalInfo
public java.lang.String getAdditionalInfo()
Description copied from interface:ZendeskFeedbackConfiguration
Gets any additional information that you wish to include in the request's descriptionThis information will be appended to any user entered text.
- Specified by:
getAdditionalInfo
in interfaceZendeskFeedbackConfiguration
- Returns:
- The additional information to include
-
-