Update SO request to use GR_API instead of VNF_API
[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     private String testApi;
30
31     public String getTestApi() {
32         return testApi;
33     }
34
35     public void setTestApi(String testApi) {
36         this.testApi = testApi;
37     }
38
39     public String getSubscriptionServiceType() {
40         return subscriptionServiceType;
41     }
42
43     public void setSubscriptionServiceType(String subscriptionServiceType) {
44         this.subscriptionServiceType = subscriptionServiceType;
45     }
46
47     public List<UserParams> getUserParams() {
48         return userParams;
49     }
50
51     public void setUserParams(List<UserParams> userParams) {
52         this.userParams = userParams;
53     }
54
55     public boolean isaLaCarte() {
56         return aLaCarte;
57     }
58
59     public void setaLaCarte(boolean aLaCarte) {
60         this.aLaCarte = aLaCarte;
61     }
62
63     @Override
64     public boolean equals(Object o) {
65         if (this == o)
66             return true;
67         if (o == null || getClass() != o.getClass())
68             return false;
69         RequestParameters that = (RequestParameters) o;
70         return aLaCarte == that.aLaCarte && Objects.equals(subscriptionServiceType, that.subscriptionServiceType)
71                 && Objects.equals(userParams, that.userParams);
72     }
73
74     @Override
75     public int hashCode() {
76         return Objects.hash(subscriptionServiceType, userParams, aLaCarte);
77     }
78
79     @Override
80     public String toString() {
81         return "RequestParameters{" +
82             "subscriptionServiceType='" + subscriptionServiceType + '\'' +
83             ", userParams=" + userParams +
84             ", aLaCarte=" + aLaCarte +
85             ", testApi='" + testApi + '\'' +
86             '}';
87     }
88 }