Remove 'All rights reserved.' on apache 2 license
[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 package org.onap.nbi.apis.serviceorder.model.consumer;
17
18 import java.util.List;
19 import java.util.Objects;
20
21 public class RequestParameters {
22
23     private String subscriptionServiceType;
24
25     private List<UserParams> userParams;
26
27     private boolean aLaCarte;
28
29
30     public String getSubscriptionServiceType() {
31         return subscriptionServiceType;
32     }
33
34     public void setSubscriptionServiceType(String subscriptionServiceType) {
35         subscriptionServiceType = subscriptionServiceType;
36     }
37
38     public List<UserParams> getUserParams() {
39         return userParams;
40     }
41
42     public void setUserParams(List<UserParams> userParams) {
43         this.userParams = userParams;
44     }
45
46     public boolean isaLaCarte() {
47         return aLaCarte;
48     }
49
50     public void setaLaCarte(boolean aLaCarte) {
51         this.aLaCarte = aLaCarte;
52     }
53
54     @Override
55     public boolean equals(Object o) {
56         if (this == o)
57             return true;
58         if (o == null || getClass() != o.getClass())
59             return false;
60         RequestParameters that = (RequestParameters) o;
61         return aLaCarte == that.aLaCarte && Objects.equals(subscriptionServiceType, that.subscriptionServiceType)
62                 && Objects.equals(userParams, that.userParams);
63     }
64
65     @Override
66     public int hashCode() {
67         return Objects.hash(subscriptionServiceType, userParams, aLaCarte);
68     }
69
70     @Override
71     public String toString() {
72         return "RequestParameters{" + "subscriptionServiceType='" + subscriptionServiceType + '\'' + ", userParams="
73                 + userParams + ", aLaCarte=" + aLaCarte + '}';
74     }
75 }