Sonar fix too many method param
[dmaap/messagerouter/dmaapclient.git] / src / main / java / org / onap / dmaap / mr / client / impl / PostAuthDataObject.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Samsung Electronics Co., Ltd. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.dmaap.mr.client.impl;
22
23 public class PostAuthDataObject {
24
25     private String path;
26     private byte[] data;
27     private String contentType;
28     private String authKey;
29     private String authDate;
30     private String username;
31     private String password;
32     private String protocolFlag;
33
34     public String getPath() {
35         return path;
36     }
37
38     public PostAuthDataObject setPath(String path) {
39         this.path = path;
40         return this;
41     }
42
43     public byte[] getData() {
44         return data;
45     }
46
47     public PostAuthDataObject setData(byte[] data) {
48         this.data = data;
49         return this;
50     }
51
52     public String getContentType() {
53         return contentType;
54     }
55
56     public PostAuthDataObject setContentType(String contentType) {
57         this.contentType = contentType;
58         return this;
59     }
60
61     public String getAuthKey() {
62         return authKey;
63     }
64
65     public PostAuthDataObject setAuthKey(String authKey) {
66         this.authKey = authKey;
67         return this;
68     }
69
70     public String getAuthDate() {
71         return authDate;
72     }
73
74     public PostAuthDataObject setAuthDate(String authDate) {
75         this.authDate = authDate;
76         return this;
77     }
78
79     public String getUsername() {
80         return username;
81     }
82
83     public PostAuthDataObject setUsername(String username) {
84         this.username = username;
85         return this;
86     }
87
88     public String getPassword() {
89         return password;
90     }
91
92     public PostAuthDataObject setPassword(String password) {
93         this.password = password;
94         return this;
95     }
96
97     public String getProtocolFlag() {
98         return protocolFlag;
99     }
100
101     public PostAuthDataObject setProtocolFlag(String protocolFlag) {
102         this.protocolFlag = protocolFlag;
103         return this;
104     }
105 }