CommentManager

Tenant Id variable was added to CommentManagerImpl class.
This commit is contained in:
nishadi 2018-02-24 18:39:25 +05:30
parent 471e6e3b21
commit 20c1ba1052

View File

@ -35,12 +35,11 @@ public interface CommentsManager {
* To add a comment to a application * To add a comment to a application
* *
* @param comment comment of the application. * @param comment comment of the application.
* @param uuid uuid of the application release * @param uuid uuid of the application release\
* @param tenantId tenant id of the application
* @return {@link Comment} Comment added * @return {@link Comment} Comment added
* @throws CommentManagementException Exceptions of the comment management. * @throws CommentManagementException Exceptions of the comment management.
*/ */
Comment addComment(Comment comment, String uuid, int tenantId) throws CommentManagementException; Comment addComment(Comment comment, String uuid) throws CommentManagementException;
/** /**
* To validate the pre-request of the comment * To validate the pre-request of the comment