Add junit tests
[aai/gizmo.git] / src / test / java / org / onap / crud / service / TestHeaders.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.crud.service;
22
23 import java.util.Date;
24 import java.util.List;
25 import java.util.Locale;
26 import java.util.Map;
27
28 import javax.ws.rs.core.Cookie;
29 import javax.ws.rs.core.HttpHeaders;
30 import javax.ws.rs.core.MediaType;
31 import javax.ws.rs.core.MultivaluedHashMap;
32 import javax.ws.rs.core.MultivaluedMap;
33
34 public class TestHeaders implements HttpHeaders {
35
36   @Override
37   public List<Locale> getAcceptableLanguages() {
38     return null;
39   }
40
41   @Override
42   public List<MediaType> getAcceptableMediaTypes() {
43     return null;
44   }
45
46   @Override
47   public Map<String, Cookie> getCookies() {
48     return null;
49   }
50
51   @Override
52   public Date getDate() {
53     return null;
54   }
55
56   @Override
57   public String getHeaderString(String arg0) {
58     return null;
59   }
60
61   @Override
62   public Locale getLanguage() {
63     return null;
64   }
65
66   @Override
67   public int getLength() {
68     return 0;
69   }
70
71   @Override
72   public MediaType getMediaType() {
73     // TODO Auto-generated method stub
74     return null;
75   }
76
77   @Override
78   public List<String> getRequestHeader(String arg0) {
79     // TODO Auto-generated method stub
80     return null;
81   }
82
83   @Override
84   public MultivaluedMap<String, String> getRequestHeaders() {
85     MultivaluedMap<String, String> map = new MultivaluedHashMap<String, String>();
86     map.add("X-FromAppId", "test-app");
87     map.add("X-TransactionId", "65f7e29c-57fd-45b2-bfd5-19e25c59110e");
88     return map;
89   }
90
91 }