Interface IFeedback
-
public interface IFeedbackRepresents feedback instructions, which will be sent to the client using the JSON API.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIFeedback.FormTargetDefines how to open a form for feedback.static classIFeedback.MessageTypeDefines the message type for feedback messages.static classIFeedback.TargetTypeDepending on the target, the handling of the instruction will be passed to core of the client system or to some specific widget.static classIFeedback.TypeDefines the type of this feedback message.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description IContextgetContext()Deprecated.java.util.Map<java.lang.String,java.lang.Object>getParams()Returns the parameters of this feedback object.IFeedback.TargetTypegetTargetType()Returns the target type of this feedback object.IFeedback.TypegetType()Returns the type of this feedback object.
-
-
-
Method Detail
-
getTargetType
IFeedback.TargetType getTargetType()
Returns the target type of this feedback object.- Returns:
- the target type
-
getType
IFeedback.Type getType()
Returns the type of this feedback object.- Returns:
- the type
-
getContext
@Deprecated IContext getContext()
Deprecated.Returns the context of this feedback object.- Returns:
- the target type
-
getParams
java.util.Map<java.lang.String,java.lang.Object> getParams()
Returns the parameters of this feedback object.- Returns:
- the parameters
-
-