Consolidate PolicyRestAdapter setup
[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-2019 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
21 package org.onap.policy.pap.xacml.rest.adapters;
22
23 public class SearchData {
24     private String query;
25     private String policyType;
26     private String descriptiveScope;
27     private String closedLooppolicyType;
28     private String onapName;
29     private String d2Service;
30     private String vnfType;
31     private String policyStatus;
32     private String vproAction;
33     private String serviceType;
34     private String bindTextSearch;
35
36     public String getQuery() {
37         return query;
38     }
39
40     public void setQuery(String query) {
41         this.query = query;
42     }
43
44     public String getPolicyType() {
45         return policyType;
46     }
47
48     public void setPolicyType(String policyType) {
49         this.policyType = policyType;
50     }
51
52     public String getDescriptiveScope() {
53         return descriptiveScope;
54     }
55
56     public void setDescriptiveScope(String descriptiveScope) {
57         this.descriptiveScope = descriptiveScope;
58     }
59
60     public String getClosedLooppolicyType() {
61         return closedLooppolicyType;
62     }
63
64     public void setClosedLooppolicyType(String closedLooppolicyType) {
65         this.closedLooppolicyType = closedLooppolicyType;
66     }
67
68     public String getOnapName() {
69         return onapName;
70     }
71
72     public void setOnapName(String onapName) {
73         this.onapName = onapName;
74     }
75
76     public String getD2Service() {
77         return d2Service;
78     }
79
80     public void setD2Service(String d2Service) {
81         this.d2Service = d2Service;
82     }
83
84     public String getVnfType() {
85         return vnfType;
86     }
87
88     public void setVnfType(String vnfType) {
89         this.vnfType = vnfType;
90     }
91
92     public String getPolicyStatus() {
93         return policyStatus;
94     }
95
96     public void setPolicyStatus(String policyStatus) {
97         this.policyStatus = policyStatus;
98     }
99
100     public String getVproAction() {
101         return vproAction;
102     }
103
104     public void setVproAction(String vproAction) {
105         this.vproAction = vproAction;
106     }
107
108     public String getServiceType() {
109         return serviceType;
110     }
111
112     public void setServiceType(String serviceType) {
113         this.serviceType = serviceType;
114     }
115
116     public String getBindTextSearch() {
117         return bindTextSearch;
118     }
119
120     public void setBindTextSearch(String bindTextSearch) {
121         this.bindTextSearch = bindTextSearch;
122     }
123 }