]> source.dussan.org Git - sonarqube.git/blob
ae619646223af6a9615e85ac2add83824e084f9b
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 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.common.email.config;
21
22 public final class EmailConfigurationBuilder {
23   private String id;
24   private String host;
25   private String port;
26   private EmailConfigurationSecurityProtocol securityProtocol;
27   private String fromAddress;
28   private String fromName;
29   private String subjectPrefix;
30   private EmailConfigurationAuthMethod authMethod;
31   private String username;
32   private String basicPassword;
33   private String oauthAuthenticationHost;
34   private String oauthClientId;
35   private String oauthClientSecret;
36   private String oauthTenant;
37
38   private EmailConfigurationBuilder() {
39   }
40
41   public static EmailConfigurationBuilder builder() {
42     return new EmailConfigurationBuilder();
43   }
44
45   public EmailConfigurationBuilder id(String id) {
46     this.id = id;
47     return this;
48   }
49
50   public EmailConfigurationBuilder host(String host) {
51     this.host = host;
52     return this;
53   }
54
55   public EmailConfigurationBuilder port(String port) {
56     this.port = port;
57     return this;
58   }
59
60   public EmailConfigurationBuilder securityProtocol(EmailConfigurationSecurityProtocol securityProtocol) {
61     this.securityProtocol = securityProtocol;
62     return this;
63   }
64
65   public EmailConfigurationBuilder fromAddress(String fromAddress) {
66     this.fromAddress = fromAddress;
67     return this;
68   }
69
70   public EmailConfigurationBuilder fromName(String fromName) {
71     this.fromName = fromName;
72     return this;
73   }
74
75   public EmailConfigurationBuilder subjectPrefix(String subjectPrefix) {
76     this.subjectPrefix = subjectPrefix;
77     return this;
78   }
79
80   public EmailConfigurationBuilder authMethod(EmailConfigurationAuthMethod authMethod) {
81     this.authMethod = authMethod;
82     return this;
83   }
84
85   public EmailConfigurationBuilder username(String username) {
86     this.username = username;
87     return this;
88   }
89
90   public EmailConfigurationBuilder basicPassword(String basicPassword) {
91     this.basicPassword = basicPassword;
92     return this;
93   }
94
95   public EmailConfigurationBuilder oauthAuthenticationHost(String oauthAuthenticationHost) {
96     this.oauthAuthenticationHost = oauthAuthenticationHost;
97     return this;
98   }
99
100   public EmailConfigurationBuilder oauthClientId(String oauthClientId) {
101     this.oauthClientId = oauthClientId;
102     return this;
103   }
104
105   public EmailConfigurationBuilder oauthClientSecret(String oauthClientSecret) {
106     this.oauthClientSecret = oauthClientSecret;
107     return this;
108   }
109
110   public EmailConfigurationBuilder oauthTenant(String oauthTenant) {
111     this.oauthTenant = oauthTenant;
112     return this;
113   }
114
115   public EmailConfiguration build() {
116     return new EmailConfiguration(id, host, port, securityProtocol, fromAddress, fromName, subjectPrefix, authMethod, username, basicPassword, oauthAuthenticationHost,
117       oauthClientId, oauthClientSecret, oauthTenant);
118   }
119 }