Added Junits for Policy PAP-REST
[policy/engine.git] / ONAP-PAP-REST / src / main / java / org / onap / policy / pap / xacml / rest / adapters / SearchData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.policy.pap.xacml.rest.adapters;
21
22 public class SearchData {
23         private String query;
24         private String policyType;
25         private String descriptiveScope;
26         private String closedLooppolicyType;
27         private String onapName;
28         private String d2Service;
29         private String vnfType;
30         private String policyStatus;
31         private String vproAction;
32         private String serviceType;
33         private String bindTextSearch;
34         public String getQuery() {
35                 return query;
36         }
37         public void setQuery(String query) {
38                 this.query = query;
39         }
40         public String getPolicyType() {
41                 return policyType;
42         }
43         public void setPolicyType(String policyType) {
44                 this.policyType = policyType;
45         }
46         public String getDescriptiveScope() {
47                 return descriptiveScope;
48         }
49         public void setDescriptiveScope(String descriptiveScope) {
50                 this.descriptiveScope = descriptiveScope;
51         }
52         public String getClosedLooppolicyType() {
53                 return closedLooppolicyType;
54         }
55         public void setClosedLooppolicyType(String closedLooppolicyType) {
56                 this.closedLooppolicyType = closedLooppolicyType;
57         }
58         public String getOnapName() {
59                 return onapName;
60         }
61         public void setOnapName(String onapName) {
62                 this.onapName = onapName;
63         }
64         public String getD2Service() {
65                 return d2Service;
66         }
67         public void setD2Service(String d2Service) {
68                 this.d2Service = d2Service;
69         }
70         public String getVnfType() {
71                 return vnfType;
72         }
73         public void setVnfType(String vnfType) {
74                 this.vnfType = vnfType;
75         }
76         public String getPolicyStatus() {
77                 return policyStatus;
78         }
79         public void setPolicyStatus(String policyStatus) {
80                 this.policyStatus = policyStatus;
81         }
82         public String getVproAction() {
83                 return vproAction;
84         }
85         public void setVproAction(String vproAction) {
86                 this.vproAction = vproAction;
87         }
88         public String getServiceType() {
89                 return serviceType;
90         }
91         public void setServiceType(String serviceType) {
92                 this.serviceType = serviceType;
93         }
94         public String getBindTextSearch() {
95                 return bindTextSearch;
96         }
97         public void setBindTextSearch(String bindTextSearch) {
98                 this.bindTextSearch = bindTextSearch;
99         }
100 }