]> source.dussan.org Git - sonarqube.git/blob
4f2d4c8ed6b3fabbd577d4e241e0cfd8809c29a5
[sonarqube.git] /
1 /*
2  * Sonar, open source software quality management tool.
3  * Copyright (C) 2008-2011 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * Sonar is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * Sonar is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Sonar; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
19  */
20 package org.sonar.plugins.email.reviews;
21
22 import org.sonar.api.notifications.Notification;
23 import org.sonar.plugins.email.api.EmailMessage;
24 import org.sonar.plugins.email.api.EmailTemplate;
25
26 public class CommentOnReviewEmailTemplate extends EmailTemplate {
27
28   @Override
29   public EmailMessage format(Notification notification) {
30     if ("review".equals(notification.getType())) {
31       String reviewId = notification.getFieldValue("reviewId");
32       String author = notification.getFieldValue("author");
33       String comment = notification.getFieldValue("comment");
34       EmailMessage email = new EmailMessage()
35           .setFrom(author)
36           .setMessageId("review/" + reviewId)
37           .setSubject("Review #" + reviewId)
38           .setMessage(comment);
39       return email;
40     }
41     return null;
42   }
43
44 }