Interface FeedbackBean
- All Superinterfaces:
IDBean
An interface for beans that collect user feedback.
- Since:
- 11.6
- Version:
- 11.6
- Author:
- Luke
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a feedback element to the bean.Returns the feedback for this bean.default boolean
hasFeedback
(int authorID) Returns whether feedback has been provided by a particular user.
-
Method Details
-
getFeedback
Collection<Feedback> getFeedback()Returns the feedback for this bean.- Returns:
- a Collection of Feedback beans
-
addFeedback
-
hasFeedback
default boolean hasFeedback(int authorID) Returns whether feedback has been provided by a particular user.- Parameters:
authorID
- the User's database ID- Returns:
- TRUE if the User has provided feedback, otherwise FALSE
-