]> source.dussan.org Git - sonarqube.git/blob
c53ec627eb8df5d3abc81f41166c8de17a486f66
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 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.server.computation.task.projectanalysis.analysis;
21
22 import javax.annotation.concurrent.Immutable;
23 import org.sonar.db.organization.OrganizationDto;
24
25 import static java.util.Objects.requireNonNull;
26
27 @Immutable
28 public class Organization {
29   private final String uuid;
30   private final String key;
31   private final String name;
32
33   private Organization(String uuid, String key, String name) {
34     this.uuid = requireNonNull(uuid, "uuid can't be null");
35     this.key = requireNonNull(key, "key can't be null");
36     this.name = requireNonNull(name, "name can't be null");
37   }
38
39   public String getUuid() {
40     return uuid;
41   }
42
43   public String getKey() {
44     return key;
45   }
46
47   public String getName() {
48     return name;
49   }
50
51   @Override
52   public boolean equals(Object o) {
53     if (this == o) {
54       return true;
55     }
56     if (o == null || getClass() != o.getClass()) {
57       return false;
58     }
59     Organization that = (Organization) o;
60     return uuid.equals(that.uuid);
61   }
62
63   @Override
64   public int hashCode() {
65     return uuid.hashCode();
66   }
67
68   @Override
69   public String toString() {
70     return "Organization{" +
71       "uuid='" + uuid + '\'' +
72       ", key='" + key + '\'' +
73       ", name='" + name + '\'' +
74       '}';
75   }
76
77   public static Organization from(OrganizationDto organizationDto) {
78     return new Organization(organizationDto.getUuid(), organizationDto.getKey(), organizationDto.getName());
79   }
80
81 }