Chore: Fix typo in INFO
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / consumer / RequestParameters.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.List;
20 import java.util.Objects;
21
22 public class RequestParameters {
23
24     private String subscriptionServiceType;
25
26     private List<UserParams> userParams;
27
28     private boolean aLaCarte;
29
30     private String testApi;
31
32     public String getTestApi() {
33         return testApi;
34     }
35
36     public void setTestApi(String testApi) {
37         this.testApi = testApi;
38     }
39
40     public String getSubscriptionServiceType() {
41         return subscriptionServiceType;
42     }
43
44     public void setSubscriptionServiceType(String subscriptionServiceType) {
45         this.subscriptionServiceType = subscriptionServiceType;
46     }
47
48     public List<UserParams> getUserParams() {
49         return userParams;
50     }
51
52     public void setUserParams(List<UserParams> userParams) {
53         this.userParams = userParams;
54     }
55
56     public boolean isaLaCarte() {
57         return aLaCarte;
58     }
59
60     public void setaLaCarte(boolean aLaCarte) {
61         this.aLaCarte = aLaCarte;
62     }
63
64     @Override
65     public boolean equals(Object o) {
66         if (this == o)
67             return true;
68         if (o == null || getClass() != o.getClass())
69             return false;
70         RequestParameters that = (RequestParameters) o;
71         return aLaCarte == that.aLaCarte && Objects.equals(subscriptionServiceType, that.subscriptionServiceType)
72                 && Objects.equals(userParams, that.userParams);
73     }
74
75     @Override
76     public int hashCode() {
77         return Objects.hash(subscriptionServiceType, userParams, aLaCarte);
78     }
79
80     @Override
81     public String toString() {
82         return "RequestParameters{" + "subscriptionServiceType='" + subscriptionServiceType + '\'' + ", userParams="
83                 + userParams + ", aLaCarte=" + aLaCarte + ", testApi='" + testApi + '\'' + '}';
84     }
85 }