Change the header to SO
[so.git] / bpmn / MSORESTClient / src / main / java / org / openecomp / mso / rest / HttpHeader.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.mso.rest;
22
23 /**
24  * An immutable class used to wrap an http header.
25  *
26  * @version 1.0
27  * @since 1.0
28  */
29 public class HttpHeader {
30     private final String name;
31     private final String value;
32
33     /**
34      * Create an http header using the specified name and value
35      *
36      * @param name name of http header
37      * @param value value of http header
38      */
39     public HttpHeader(final String name, final String value) {
40         if (name == null) {
41             throw new IllegalArgumentException("Name may not be null.");
42         }
43
44         this.name = name;
45         this.value = value;
46     }
47
48     /**
49      * Gets the header name.
50      * 
51      * @return header name
52      */
53     public String getName() {
54         return this.name;
55     }
56
57     /**
58      * Gets the header value.
59      * 
60      * @return header value 
61      */
62     public String getValue() {
63         return this.value;
64     }
65 }