aa59868fe82516377ce8409746b41504fa21f08f
[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 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 UpdateObjectData {
23     private String oldPolicyName;
24     private String newPolicyName;
25     private String action;
26
27     public String getOldPolicyName() {
28         return oldPolicyName;
29     }
30
31     public void setOldPolicyName(String oldPolicyName) {
32         this.oldPolicyName = oldPolicyName;
33     }
34
35     public String getNewPolicyName() {
36         return newPolicyName;
37     }
38
39     public void setNewPolicyName(String newPolicyName) {
40         this.newPolicyName = newPolicyName;
41     }
42
43     public String getAction() {
44         return action;
45     }
46
47     public void setAction(String action) {
48         this.action = action;
49     }
50 }