Package com.zendesk.sdk.feedback
Class WrappedZendeskFeedbackConfiguration
- java.lang.Object
-
- com.zendesk.sdk.feedback.WrappedZendeskFeedbackConfiguration
-
- All Implemented Interfaces:
- ZendeskFeedbackConfiguration, java.io.Serializable
public class WrappedZendeskFeedbackConfiguration extends java.lang.Object implements ZendeskFeedbackConfiguration
Wrapped version ofZendeskFeedbackConfigurationThis version is used when passing a serialized extra to ensure that we are not passing an anonymous implementation which is inside a class that isn't serializable
Created by Zendesk on 22/10/2015.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description WrappedZendeskFeedbackConfiguration(ZendeskFeedbackConfiguration configuration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.StringgetAdditionalInfo()Gets any additional information that you wish to include in the request's descriptionjava.lang.StringgetRequestSubject()Providing feedback to Zendesk will result in the creation of a request, which will have the subject specified by this method.java.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
-
-
-
Constructor Detail
-
WrappedZendeskFeedbackConfiguration
public WrappedZendeskFeedbackConfiguration(ZendeskFeedbackConfiguration configuration)
-
-
Method Detail
-
getTags
public java.util.List<java.lang.String> getTags()
Description copied from interface:ZendeskFeedbackConfigurationGets a list of tags to be included in the request that will be created by the feedback mechanisms- Specified by:
getTagsin 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:ZendeskFeedbackConfigurationGets any additional information that you wish to include in the request's descriptionThis information will be appended to any user entered text.
- Specified by:
getAdditionalInfoin interfaceZendeskFeedbackConfiguration- Returns:
- The additional information to include
-
getRequestSubject
public java.lang.String getRequestSubject()
Description copied from interface:ZendeskFeedbackConfigurationProviding feedback to Zendesk will result in the creation of a request, which will have the subject specified by this method.- Specified by:
getRequestSubjectin interfaceZendeskFeedbackConfiguration- Returns:
- The subject of the request that will be created
-
-