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