Package de.hybris.platform.b2b.dao
Interface B2BCommentDao<C extends B2BCommentModel,T extends AbstractOrderModel>
-
- All Known Implementing Classes:
DefaultB2BCommentDao
public interface B2BCommentDao<C extends B2BCommentModel,T extends AbstractOrderModel>A dao aroundB2BCommentModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<C>findCommentsByOrder(T order)Find all comments and associated to an orderjava.util.List<C>findCommentsByUser(UserModel user, T order)Find all comments owned by user and associated to an order
-
-
-
Method Detail
-
findCommentsByUser
java.util.List<C> findCommentsByUser(UserModel user, T order)
Find all comments owned by user and associated to an order- Parameters:
user- The owner of aB2BCommentModelorder- An order or cart.- Returns:
- All comments associated to an order or cart owned by user.
-
-