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 ofZendeskFeedbackConfiguration
This 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.String
getAdditionalInfo()
Gets any additional information that you wish to include in the request's descriptionjava.lang.String
getRequestSubject()
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: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
-
getRequestSubject
public java.lang.String getRequestSubject()
Description copied from interface:ZendeskFeedbackConfiguration
Providing feedback to Zendesk will result in the creation of a request, which will have the subject specified by this method.- Specified by:
getRequestSubject
in interfaceZendeskFeedbackConfiguration
- Returns:
- The subject of the request that will be created
-
-