org.sonar.server.permission.ws.template.DefaultTemplatesResolver Maven / Gradle / Ivy
/*
* SonarQube
* Copyright (C) 2009-2018 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.server.permission.ws.template;
import java.util.Optional;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import org.sonar.db.organization.DefaultTemplates;
import static java.util.Objects.requireNonNull;
import static java.util.Optional.ofNullable;
public interface DefaultTemplatesResolver {
/**
* Resolve the effective default templates uuid for the specified {@link DefaultTemplates}.
*
* - {@link ResolvedDefaultTemplates#project} is always the same as {@link DefaultTemplates#projectUuid}
* - when Governance is not installed, {@link ResolvedDefaultTemplates#view} is always {@code null}
* - when Governance is not installed, {@link ResolvedDefaultTemplates#view} is {@link DefaultTemplates#viewUuid}
* when it is non {@code null}, otherwise it is {@link DefaultTemplates#projectUuid}
*
*/
ResolvedDefaultTemplates resolve(DefaultTemplates defaultTemplates);
@Immutable
final class ResolvedDefaultTemplates {
private final String project;
private final String view;
ResolvedDefaultTemplates(String project, @Nullable String view) {
this.project = requireNonNull(project, "project can't be null");
this.view = view;
}
public String getProject() {
return project;
}
public Optional getView() {
return ofNullable(view);
}
}
}