/* * SonarQube * Copyright (C) 2009-2017 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.sonarqube.ws.client.usergroup; import javax.annotation.CheckForNull; import javax.annotation.Nullable; import javax.annotation.concurrent.Immutable; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Strings.isNullOrEmpty; @Immutable public class CreateWsRequest { private final String name; private final String description; private final String organization; private CreateWsRequest(Builder builder) { this.name = builder.name; this.description = builder.description; this.organization = builder.organization; } public String getName() { return name; } @CheckForNull public String getDescription() { return description; } public String getOrganization() { return organization; } public static Builder builder() { return new Builder(); } public static class Builder { private String name; private String description; private String organization; private Builder() { // enforce factory method use } public Builder setName(String name) { this.name = name; return this; } public Builder setDescription(@Nullable String description) { this.description = description; return this; } public Builder setOrganization(String organization) { this.organization = organization; return this; } public CreateWsRequest build() { checkArgument(!isNullOrEmpty(name), "Name is mandatory and must not be empty"); return new CreateWsRequest(this); } } }