Chore: Fix typo in INFO
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / consumer / Request.java
1 /**
2  *     Copyright (c) 2018 Orange
3  *
4  *     Licensed under the Apache License, Version 2.0 (the "License");
5  *     you may not use this file except in compliance with the License.
6  *     You may obtain a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *     Unless required by applicable law or agreed to in writing, software
11  *     distributed under the License is distributed on an "AS IS" BASIS,
12  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *     See the License for the specific language governing permissions and
14  *     limitations under the License.
15  */
16
17 package org.onap.nbi.apis.serviceorder.model.consumer;
18
19 import java.util.Objects;
20
21 public class Request {
22
23     private RequestStatus requestStatus;
24
25     public Request() {
26     }
27
28     public Request(RequestStatus requestStatus) {
29         this.requestStatus = requestStatus;
30     }
31
32     public RequestStatus getRequestStatus() {
33         return requestStatus;
34     }
35
36     public void setRequestStatus(RequestStatus requestStatus) {
37         this.requestStatus = requestStatus;
38     }
39
40     @Override
41     public boolean equals(Object o) {
42         if (this == o)
43             return true;
44         if (o == null || getClass() != o.getClass())
45             return false;
46         Request request = (Request) o;
47         return Objects.equals(requestStatus, request.requestStatus);
48     }
49
50     @Override
51     public int hashCode() {
52         return Objects.hash(requestStatus);
53     }
54
55     @Override
56     public String toString() {
57         return "Request{" + "requestStatus=" + requestStatus + '}';
58     }
59 }