ead403a02142d870fe1cbdfc33ae8ebf6d0114bb
[policy/engine.git] / ONAP-PAP-REST / src / main / java / org / onap / policy / pap / xacml / rest / adapters / UpdateObjectData.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 UpdateObjectData {
24     private String oldPolicyName;
25     private String newPolicyName;
26     private String action;
27
28     public String getOldPolicyName() {
29         return oldPolicyName;
30     }
31
32     public void setOldPolicyName(String oldPolicyName) {
33         this.oldPolicyName = oldPolicyName;
34     }
35
36     public String getNewPolicyName() {
37         return newPolicyName;
38     }
39
40     public void setNewPolicyName(String newPolicyName) {
41         this.newPolicyName = newPolicyName;
42     }
43
44     public String getAction() {
45         return action;
46     }
47
48     public void setAction(String action) {
49         this.action = action;
50     }
51 }