3 * Copyright (C) 2009-2017 SonarSource SA
4 * mailto:info AT sonarsource DOT com
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.
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.
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.
20 package org.sonar.server.computation.task.projectanalysis.analysis;
22 import javax.annotation.concurrent.Immutable;
23 import org.sonar.db.organization.OrganizationDto;
25 import static java.util.Objects.requireNonNull;
28 public class Organization {
29 private final String uuid;
30 private final String key;
31 private final String name;
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");
39 public String getUuid() {
43 public String getKey() {
47 public String getName() {
52 public boolean equals(Object o) {
56 if (o == null || getClass() != o.getClass()) {
59 Organization that = (Organization) o;
60 return uuid.equals(that.uuid);
64 public int hashCode() {
65 return uuid.hashCode();
69 public String toString() {
70 return "Organization{" +
71 "uuid='" + uuid + '\'' +
72 ", key='" + key + '\'' +
73 ", name='" + name + '\'' +
77 public static Organization from(OrganizationDto organizationDto) {
78 return new Organization(organizationDto.getUuid(), organizationDto.getKey(), organizationDto.getName());