[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / http / HeaderData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.ci.tests.datatypes.http;
22
23 public class HeaderData {
24         String contentMd5;
25         String contentType;
26         String HttpCspUserId;
27         String HttpCspFirstName;
28         String HttpCspLastName;
29         String HttpCspWsType;
30         String HttpIvRemoteAddress;
31         String HttpIvUser;
32
33         public HeaderData() {
34                 super();
35         }
36
37         public HeaderData(String contentMd5, String contentType, String httpCspUserId, String httpCspFirstName,
38                         String httpCspLastName, String httpCspWsType, String httpIvRemoteAddress, String httpIvUser) {
39                 super();
40                 this.contentMd5 = contentMd5;
41                 this.contentType = contentType;
42                 HttpCspUserId = httpCspUserId;
43                 HttpCspFirstName = httpCspFirstName;
44                 HttpCspLastName = httpCspLastName;
45                 HttpCspWsType = httpCspWsType;
46                 HttpIvRemoteAddress = httpIvRemoteAddress;
47                 HttpIvUser = httpIvUser;
48         }
49
50         public String getContentMd5() {
51                 return contentMd5;
52         }
53
54         public void setContentMd5(String contentMd5) {
55                 this.contentMd5 = contentMd5;
56         }
57
58         public String getContentType() {
59                 return contentType;
60         }
61
62         public void setContentType(String contentType) {
63                 this.contentType = contentType;
64         }
65
66         public String getHttpCspUserId() {
67                 return HttpCspUserId;
68         }
69
70         public void setHttpCspUserId(String httpCspUserId) {
71                 HttpCspUserId = httpCspUserId;
72         }
73
74         public String getHttpCspFirstName() {
75                 return HttpCspFirstName;
76         }
77
78         public void setHttpCspFirstName(String httpCspFirstName) {
79                 HttpCspFirstName = httpCspFirstName;
80         }
81
82         public String getHttpCspLastName() {
83                 return HttpCspLastName;
84         }
85
86         public void setHttpCspLastName(String httpCspLastName) {
87                 HttpCspLastName = httpCspLastName;
88         }
89
90         public String getHttpCspWsType() {
91                 return HttpCspWsType;
92         }
93
94         public void setHttpCspWsType(String httpCspWsType) {
95                 HttpCspWsType = httpCspWsType;
96         }
97
98         public String getHttpIvRemoteAddress() {
99                 return HttpIvRemoteAddress;
100         }
101
102         public void setHttpIvRemoteAddress(String httpIvRemoteAddress) {
103                 HttpIvRemoteAddress = httpIvRemoteAddress;
104         }
105
106         public String getHttpIvUser() {
107                 return HttpIvUser;
108         }
109
110         public void setHttpIvUser(String httpIvUser) {
111                 HttpIvUser = httpIvUser;
112         }
113
114 }