]> source.dussan.org Git - sonarqube.git/blob
282bc315bc89af75d5b50fbc1a8f7bff0122aa92
[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.projectexport.taskprocessor;
21
22 import java.util.Objects;
23 import javax.annotation.Nullable;
24 import javax.annotation.concurrent.Immutable;
25 import org.sonar.db.component.ComponentDto;
26 import org.sonar.db.project.ProjectDto;
27
28 import static java.util.Objects.requireNonNull;
29
30 @Immutable
31 public class ProjectDescriptor {
32   private final String uuid;
33   private final String key;
34   private final String name;
35
36   public ProjectDescriptor(String uuid, String key, String name) {
37     this.uuid = requireNonNull(uuid);
38     this.key = requireNonNull(key);
39     this.name = requireNonNull(name);
40   }
41
42   /**
43    * Build a {@link ProjectDescriptor} without checking qualifier of ComponentDto.
44    */
45   public static ProjectDescriptor of(ProjectDto project) {
46     return new ProjectDescriptor(project.getUuid(), project.getKey(), project.getName());
47   }
48
49   public final String getUuid() {
50     return uuid;
51   }
52
53   public final String getKey() {
54     return key;
55   }
56
57   public final String getName() {
58     return name;
59   }
60
61   @Override
62   public final boolean equals(@Nullable Object o) {
63     if (this == o) {
64       return true;
65     }
66     if (o == null || getClass() != o.getClass()) {
67       return false;
68     }
69     ProjectDescriptor that = (ProjectDescriptor) o;
70     return key.equals(that.key);
71   }
72
73   @Override
74   public final int hashCode() {
75     return Objects.hash(key);
76   }
77
78   @Override
79   public final String toString() {
80     return getClass().getSimpleName() + "{" +
81       "uuid='" + uuid + '\'' +
82       ", key='" + key + '\'' +
83       ", name='" + name + '\'' +
84       '}';
85   }
86 }