Remove outdated doc for A1 Adaptor
[integration.git] / test / mocks / masspnfsim / pnf-sim-lightweight / src / main / java / org / onap / pnfsimulator / rest / util / ResponseBuilder.java
1 /*
2  * ============LICENSE_START=======================================================
3  * PNF-REGISTRATION-HANDLER
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA 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.onap.pnfsimulator.rest.util;
22
23 import java.util.LinkedHashMap;
24 import java.util.Map;
25 import org.springframework.http.HttpStatus;
26 import org.springframework.http.ResponseEntity;
27
28 public class ResponseBuilder {
29
30     public static final String TIMESTAMP = "timestamp";
31     public static final String MESSAGE = "message";
32     public static final String SIMULATOR_STATUS = "simulatorStatus";
33     public static final String REMAINING_TIME = "remainingTime";
34
35     private HttpStatus httpStatus;
36     private Map<String, Object> body = new LinkedHashMap<>();
37
38     private ResponseBuilder(HttpStatus httpStatus) {
39         this.httpStatus = httpStatus;
40     }
41
42     public static ResponseBuilder status(HttpStatus httpStatus) {
43
44         return new ResponseBuilder(httpStatus);
45     }
46
47     public ResponseBuilder put(String key, Object value) {
48
49         body.put(key, value);
50         return this;
51     }
52
53     public ResponseEntity build() {
54
55         if (body.isEmpty()) {
56             return ResponseEntity.status(httpStatus).build();
57         }
58
59         return ResponseEntity.status(httpStatus).body(body);
60     }
61
62 }