]> source.dussan.org Git - sonarqube.git/blob
49101053a829f588da0eb81eb6c9d14db92e42dd
[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.sonarqube.ws.client.permission;
21
22 import javax.annotation.CheckForNull;
23 import javax.annotation.Nullable;
24 import javax.annotation.concurrent.Immutable;
25
26 import static java.util.Objects.requireNonNull;
27
28 @Immutable
29 public class RemoveProjectCreatorFromTemplateRequest {
30   private final String templateId;
31   private final String organization;
32   private final String templateName;
33   private final String permission;
34
35   private RemoveProjectCreatorFromTemplateRequest(Builder builder) {
36     this.templateId = builder.templateId;
37     this.organization = builder.organization;
38     this.templateName = builder.templateName;
39     this.permission = requireNonNull(builder.permission);
40   }
41
42   @CheckForNull
43   public String getTemplateId() {
44     return templateId;
45   }
46
47   @CheckForNull
48   public String getOrganization() {
49     return organization;
50   }
51
52   @CheckForNull
53   public String getTemplateName() {
54     return templateName;
55   }
56
57   public String getPermission() {
58     return permission;
59   }
60
61   public static Builder builder() {
62     return new Builder();
63   }
64
65   public static class Builder {
66     private String templateId;
67     private String organization;
68     private String templateName;
69     private String permission;
70
71     private Builder() {
72       // enforce method constructor
73     }
74
75     public Builder setTemplateId(@Nullable String templateId) {
76       this.templateId = templateId;
77       return this;
78     }
79
80     public Builder setOrganization(@Nullable String s) {
81       this.organization = s;
82       return this;
83     }
84
85     public Builder setTemplateName(@Nullable String templateName) {
86       this.templateName = templateName;
87       return this;
88     }
89
90     public Builder setPermission(@Nullable String permission) {
91       this.permission = permission;
92       return this;
93     }
94
95     public RemoveProjectCreatorFromTemplateRequest build() {
96       return new RemoveProjectCreatorFromTemplateRequest(this);
97     }
98   }
99 }