]> source.dussan.org Git - sonarqube.git/blob
003718bdfc4354d04ea63e8ba6464189fa637a64
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program 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  * This program 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 License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.ce.task.projectanalysis.pushevent;
21
22 import java.util.List;
23 import java.util.Optional;
24 import org.sonar.ce.task.projectanalysis.locations.flow.Flow;
25 import org.sonar.ce.task.projectanalysis.locations.flow.Location;
26
27 public class TaintVulnerabilityRaised extends IssueEvent {
28
29   private static final String EVENT_NAME = "TaintVulnerabilityRaised";
30
31   private String branch;
32   private long creationDate;
33   private String ruleKey;
34   private String severity;
35   private String type;
36   private Location mainLocation;
37   private List<Flow> flows;
38   private String ruleDescriptionContextKey;
39
40   public TaintVulnerabilityRaised() {
41     // nothing to do
42   }
43
44   @Override
45   public String getEventName() {
46     return EVENT_NAME;
47   }
48
49   public String getBranch() {
50     return branch;
51   }
52
53   public void setBranch(String branch) {
54     this.branch = branch;
55   }
56
57   public long getCreationDate() {
58     return creationDate;
59   }
60
61   public void setCreationDate(long creationDate) {
62     this.creationDate = creationDate;
63   }
64
65   public String getRuleKey() {
66     return ruleKey;
67   }
68
69   public void setRuleKey(String ruleKey) {
70     this.ruleKey = ruleKey;
71   }
72
73   public String getSeverity() {
74     return severity;
75   }
76
77   public void setSeverity(String severity) {
78     this.severity = severity;
79   }
80
81   public String getType() {
82     return type;
83   }
84
85   public void setType(String type) {
86     this.type = type;
87   }
88
89   public Location getMainLocation() {
90     return mainLocation;
91   }
92
93   public void setMainLocation(Location mainLocation) {
94     this.mainLocation = mainLocation;
95   }
96
97   public List<Flow> getFlows() {
98     return flows;
99   }
100
101   public void setFlows(List<Flow> flows) {
102     this.flows = flows;
103   }
104
105   public Optional<String> getRuleDescriptionContextKey() {
106     return Optional.ofNullable(ruleDescriptionContextKey);
107   }
108
109   public void setRuleDescriptionContextKey(String ruleDescriptionContextKey) {
110     this.ruleDescriptionContextKey = ruleDescriptionContextKey;
111   }
112 }