]> source.dussan.org Git - sonarqube.git/blob
770d1fd99a1c99812aa9169c67fe56323df5446e
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 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.almintegrations;
21
22 import javax.annotation.Generated;
23
24 /**
25  * This is part of the internal API.
26  * This is a POST request.
27  * @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/alm_integrations/webhook_github">Further information about this action online (including a response example)</a>
28  * @since 9.7
29  */
30 @Generated("sonar-ws-generator")
31 public class SendGithubCodeScanningAlertWebhookPayloadRequest {
32   private String payload;
33   private String githubEventHeader;
34   private String githubSignatureHeader;
35   private String githubSignature256Header;
36
37   /**
38    * This is a mandatory parameter.
39    */
40   public SendGithubCodeScanningAlertWebhookPayloadRequest setPayload(String payload) {
41     this.payload = payload;
42     return this;
43   }
44
45   public String getPayload() {
46     return payload;
47   }
48
49   /**
50    * This is a mandatory parameter.
51    */
52   public SendGithubCodeScanningAlertWebhookPayloadRequest setGithubEventHeader(String header) {
53     this.githubEventHeader = header;
54     return this;
55   }
56
57   public String getGithubEventHeader() {
58     return githubEventHeader;
59   }
60
61   /**
62    * This is a mandatory parameter.
63    */
64   public SendGithubCodeScanningAlertWebhookPayloadRequest setGithubSignatureHeader(String header) {
65     this.githubSignatureHeader = header;
66     return this;
67   }
68
69   public String getGithubSignatureHeader() {
70     return this.githubSignatureHeader;
71   }
72
73   /**
74    * This is a mandatory parameter.
75    */
76   public SendGithubCodeScanningAlertWebhookPayloadRequest setGithubSignature256Header(String header) {
77     this.githubSignature256Header = header;
78     return this;
79   }
80
81   public String getGithubSignature256Header() {
82     return githubSignature256Header;
83   }
84 }