/* * SonarQube * Copyright (C) 2009-2025 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.sonar.db.issue; import java.io.Serializable; import javax.annotation.CheckForNull; import javax.annotation.Nullable; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import org.sonar.api.rule.RuleKey; import org.sonar.db.component.BranchType; public final class PrIssueDto implements Serializable { private String kee; private String message; private Integer line; private String checksum; private String status; private Long issueUpdateDate; // joins private String ruleKey; private String ruleRepo; private String branchKey; private BranchType branchType; public String getKey() { return kee; } public PrIssueDto setKee(String s) { this.kee = s; return this; } @CheckForNull public String getMessage() { return message; } public PrIssueDto setMessage(@Nullable String s) { this.message = s; return this; } @CheckForNull public Integer getLine() { return line; } public PrIssueDto setLine(@Nullable Integer i) { this.line = i; return this; } /** * Branch name for BRANCH, PR key for PR */ public String getBranchKey() { return branchKey; } public PrIssueDto setBranchKey(String s) { this.branchKey = s; return this; } public BranchType getBranchType() { return branchType; } public PrIssueDto setBranchType(BranchType s) { this.branchType = s; return this; } public String getStatus() { return status; } public PrIssueDto setStatus(@Nullable String s) { this.status = s; return this; } @CheckForNull public String getChecksum() { return checksum; } public PrIssueDto setChecksum(@Nullable String s) { this.checksum = s; return this; } public void setRuleRepo(String ruleRepo) { this.ruleRepo = ruleRepo; } public void setRuleKey(String ruleKey) { this.ruleKey = ruleKey; } public RuleKey getRuleKey() { return RuleKey.of(ruleRepo, ruleKey); } public Long getIssueUpdateDate() { return issueUpdateDate; } public PrIssueDto setIssueUpdateDate(Long issueUpdateDate) { this.issueUpdateDate = issueUpdateDate; return this; } @Override public String toString() { return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE); } }